![JAR search and dependency download from the Maven repository](/logo.png)
org.purejava.appindicator._GPollFD 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 _GPollFD {
* int fd;
* unsigned short events;
* unsigned short revents;
* };
* }
*/
public class _GPollFD {
public static MemoryLayout $LAYOUT() {
return constants$247.const$3;
}
public static VarHandle fd$VH() {
return constants$247.const$4;
}
/**
* Getter for field:
* {@snippet :
* int fd;
* }
*/
public static int fd$get(MemorySegment seg) {
return (int)constants$247.const$4.get(seg);
}
/**
* Setter for field:
* {@snippet :
* int fd;
* }
*/
public static void fd$set(MemorySegment seg, int x) {
constants$247.const$4.set(seg, x);
}
public static int fd$get(MemorySegment seg, long index) {
return (int)constants$247.const$4.get(seg.asSlice(index*sizeof()));
}
public static void fd$set(MemorySegment seg, long index, int x) {
constants$247.const$4.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle events$VH() {
return constants$247.const$5;
}
/**
* Getter for field:
* {@snippet :
* unsigned short events;
* }
*/
public static short events$get(MemorySegment seg) {
return (short)constants$247.const$5.get(seg);
}
/**
* Setter for field:
* {@snippet :
* unsigned short events;
* }
*/
public static void events$set(MemorySegment seg, short x) {
constants$247.const$5.set(seg, x);
}
public static short events$get(MemorySegment seg, long index) {
return (short)constants$247.const$5.get(seg.asSlice(index*sizeof()));
}
public static void events$set(MemorySegment seg, long index, short x) {
constants$247.const$5.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle revents$VH() {
return constants$248.const$0;
}
/**
* Getter for field:
* {@snippet :
* unsigned short revents;
* }
*/
public static short revents$get(MemorySegment seg) {
return (short)constants$248.const$0.get(seg);
}
/**
* Setter for field:
* {@snippet :
* unsigned short revents;
* }
*/
public static void revents$set(MemorySegment seg, short x) {
constants$248.const$0.set(seg, x);
}
public static short revents$get(MemorySegment seg, long index) {
return (short)constants$248.const$0.get(seg.asSlice(index*sizeof()));
}
public static void revents$set(MemorySegment seg, long index, short x) {
constants$248.const$0.set(seg.asSlice(index*sizeof()), x);
}
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); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy