org.purejava.appindicator._GTlsCertificateClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libappindicator-gtk3-java-full Show documentation
Show all versions of libappindicator-gtk3-java-full Show documentation
Java bindings for libappindicator-gtk3 in 100% pure Java
// Generated by jextract
package org.purejava.appindicator;
import java.lang.foreign.Arena;
import java.lang.foreign.MemoryLayout;
import java.lang.foreign.MemorySegment;
import java.lang.foreign.SegmentAllocator;
import java.lang.invoke.VarHandle;
/**
* {@snippet :
* struct _GTlsCertificateClass {
* struct _GObjectClass parent_class;
* enum GTlsCertificateFlags (*verify)(struct _GTlsCertificate*,struct _GSocketConnectable*,struct _GTlsCertificate*);
* void* padding[8];
* };
* }
*/
public class _GTlsCertificateClass {
public static MemoryLayout $LAYOUT() {
return constants$1351.const$3;
}
public static MemorySegment parent_class$slice(MemorySegment seg) {
return seg.asSlice(0, 136);
}
/**
* {@snippet :
* enum GTlsCertificateFlags (*verify)(struct _GTlsCertificate*,struct _GSocketConnectable*,struct _GTlsCertificate*);
* }
*/
public interface verify {
int apply(java.lang.foreign.MemorySegment _x0, java.lang.foreign.MemorySegment _x1, java.lang.foreign.MemorySegment _x2);
static MemorySegment allocate(verify fi, Arena scope) {
return RuntimeHelper.upcallStub(constants$1351.const$4, fi, constants$12.const$2, scope);
}
static verify ofAddress(MemorySegment addr, Arena arena) {
MemorySegment symbol = addr.reinterpret(arena, null);
return (java.lang.foreign.MemorySegment __x0, java.lang.foreign.MemorySegment __x1, java.lang.foreign.MemorySegment __x2) -> {
try {
return (int)constants$12.const$4.invokeExact(symbol, __x0, __x1, __x2);
} catch (Throwable ex$) {
throw new AssertionError("should not reach here", ex$);
}
};
}
}
public static VarHandle verify$VH() {
return constants$1351.const$5;
}
/**
* Getter for field:
* {@snippet :
* enum GTlsCertificateFlags (*verify)(struct _GTlsCertificate*,struct _GSocketConnectable*,struct _GTlsCertificate*);
* }
*/
public static MemorySegment verify$get(MemorySegment seg) {
return (java.lang.foreign.MemorySegment)constants$1351.const$5.get(seg);
}
/**
* Setter for field:
* {@snippet :
* enum GTlsCertificateFlags (*verify)(struct _GTlsCertificate*,struct _GSocketConnectable*,struct _GTlsCertificate*);
* }
*/
public static void verify$set(MemorySegment seg, MemorySegment x) {
constants$1351.const$5.set(seg, x);
}
public static MemorySegment verify$get(MemorySegment seg, long index) {
return (java.lang.foreign.MemorySegment)constants$1351.const$5.get(seg.asSlice(index*sizeof()));
}
public static void verify$set(MemorySegment seg, long index, MemorySegment x) {
constants$1351.const$5.set(seg.asSlice(index*sizeof()), x);
}
public static verify verify(MemorySegment segment, Arena scope) {
return verify.ofAddress(verify$get(segment), scope);
}
public static MemorySegment padding$slice(MemorySegment seg) {
return seg.asSlice(144, 64);
}
public static long sizeof() { return $LAYOUT().byteSize(); }
public static MemorySegment allocate(SegmentAllocator allocator) { return allocator.allocate($LAYOUT()); }
public static MemorySegment allocateArray(long len, SegmentAllocator allocator) {
return allocator.allocate(MemoryLayout.sequenceLayout(len, $LAYOUT()));
}
public static MemorySegment ofAddress(MemorySegment addr, Arena scope) { return RuntimeHelper.asArray(addr, $LAYOUT(), 1, scope); }
}