All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.purejava.appindicator._AtkRegistry Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
// 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 _AtkRegistry {
 *     struct _GObject parent;
 *     struct _GHashTable* factory_type_registry;
 *     struct _GHashTable* factory_singleton_cache;
 * };
 * }
 */
public class _AtkRegistry {

    public static MemoryLayout $LAYOUT() {
        return constants$2049.const$3;
    }
    public static MemorySegment parent$slice(MemorySegment seg) {
        return seg.asSlice(0, 24);
    }
    public static VarHandle factory_type_registry$VH() {
        return constants$2049.const$4;
    }
    /**
     * Getter for field:
     * {@snippet :
     * struct _GHashTable* factory_type_registry;
     * }
     */
    public static MemorySegment factory_type_registry$get(MemorySegment seg) {
        return (java.lang.foreign.MemorySegment)constants$2049.const$4.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * struct _GHashTable* factory_type_registry;
     * }
     */
    public static void factory_type_registry$set(MemorySegment seg, MemorySegment x) {
        constants$2049.const$4.set(seg, x);
    }
    public static MemorySegment factory_type_registry$get(MemorySegment seg, long index) {
        return (java.lang.foreign.MemorySegment)constants$2049.const$4.get(seg.asSlice(index*sizeof()));
    }
    public static void factory_type_registry$set(MemorySegment seg, long index, MemorySegment x) {
        constants$2049.const$4.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle factory_singleton_cache$VH() {
        return constants$2049.const$5;
    }
    /**
     * Getter for field:
     * {@snippet :
     * struct _GHashTable* factory_singleton_cache;
     * }
     */
    public static MemorySegment factory_singleton_cache$get(MemorySegment seg) {
        return (java.lang.foreign.MemorySegment)constants$2049.const$5.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * struct _GHashTable* factory_singleton_cache;
     * }
     */
    public static void factory_singleton_cache$set(MemorySegment seg, MemorySegment x) {
        constants$2049.const$5.set(seg, x);
    }
    public static MemorySegment factory_singleton_cache$get(MemorySegment seg, long index) {
        return (java.lang.foreign.MemorySegment)constants$2049.const$5.get(seg.asSlice(index*sizeof()));
    }
    public static void factory_singleton_cache$set(MemorySegment seg, long index, MemorySegment x) {
        constants$2049.const$5.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