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

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

There is a newer version: 1.4.1
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 _GInetAddressClass {
 *     struct _GObjectClass parent_class;
 *     char* (*to_string)(struct _GInetAddress*);
 *     unsigned char* (*to_bytes)(struct _GInetAddress*);
 * };
 * }
 */
public class _GInetAddressClass {

    public static MemoryLayout $LAYOUT() {
        return constants$1097.const$4;
    }
    public static MemorySegment parent_class$slice(MemorySegment seg) {
        return seg.asSlice(0, 136);
    }
    /**
     * {@snippet :
 * char* (*to_string)(struct _GInetAddress*);
     * }
     */
    public interface to_string {

        java.lang.foreign.MemorySegment apply(java.lang.foreign.MemorySegment user_data);
        static MemorySegment allocate(to_string fi, Arena scope) {
            return RuntimeHelper.upcallStub(constants$1097.const$5, fi, constants$5.const$2, scope);
        }
        static to_string ofAddress(MemorySegment addr, Arena arena) {
            MemorySegment symbol = addr.reinterpret(arena, null);
            return (java.lang.foreign.MemorySegment _user_data) -> {
                try {
                    return (java.lang.foreign.MemorySegment)constants$99.const$0.invokeExact(symbol, _user_data);
                } catch (Throwable ex$) {
                    throw new AssertionError("should not reach here", ex$);
                }
            };
        }
    }

    public static VarHandle to_string$VH() {
        return constants$1098.const$0;
    }
    /**
     * Getter for field:
     * {@snippet :
     * char* (*to_string)(struct _GInetAddress*);
     * }
     */
    public static MemorySegment to_string$get(MemorySegment seg) {
        return (java.lang.foreign.MemorySegment)constants$1098.const$0.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * char* (*to_string)(struct _GInetAddress*);
     * }
     */
    public static void to_string$set(MemorySegment seg, MemorySegment x) {
        constants$1098.const$0.set(seg, x);
    }
    public static MemorySegment to_string$get(MemorySegment seg, long index) {
        return (java.lang.foreign.MemorySegment)constants$1098.const$0.get(seg.asSlice(index*sizeof()));
    }
    public static void to_string$set(MemorySegment seg, long index, MemorySegment x) {
        constants$1098.const$0.set(seg.asSlice(index*sizeof()), x);
    }
    public static to_string to_string(MemorySegment segment, Arena scope) {
        return to_string.ofAddress(to_string$get(segment), scope);
    }
    /**
     * {@snippet :
 * unsigned char* (*to_bytes)(struct _GInetAddress*);
     * }
     */
    public interface to_bytes {

        java.lang.foreign.MemorySegment apply(java.lang.foreign.MemorySegment user_data);
        static MemorySegment allocate(to_bytes fi, Arena scope) {
            return RuntimeHelper.upcallStub(constants$1098.const$1, fi, constants$5.const$2, scope);
        }
        static to_bytes ofAddress(MemorySegment addr, Arena arena) {
            MemorySegment symbol = addr.reinterpret(arena, null);
            return (java.lang.foreign.MemorySegment _user_data) -> {
                try {
                    return (java.lang.foreign.MemorySegment)constants$99.const$0.invokeExact(symbol, _user_data);
                } catch (Throwable ex$) {
                    throw new AssertionError("should not reach here", ex$);
                }
            };
        }
    }

    public static VarHandle to_bytes$VH() {
        return constants$1098.const$2;
    }
    /**
     * Getter for field:
     * {@snippet :
     * unsigned char* (*to_bytes)(struct _GInetAddress*);
     * }
     */
    public static MemorySegment to_bytes$get(MemorySegment seg) {
        return (java.lang.foreign.MemorySegment)constants$1098.const$2.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * unsigned char* (*to_bytes)(struct _GInetAddress*);
     * }
     */
    public static void to_bytes$set(MemorySegment seg, MemorySegment x) {
        constants$1098.const$2.set(seg, x);
    }
    public static MemorySegment to_bytes$get(MemorySegment seg, long index) {
        return (java.lang.foreign.MemorySegment)constants$1098.const$2.get(seg.asSlice(index*sizeof()));
    }
    public static void to_bytes$set(MemorySegment seg, long index, MemorySegment x) {
        constants$1098.const$2.set(seg.asSlice(index*sizeof()), x);
    }
    public static to_bytes to_bytes(MemorySegment segment, Arena scope) {
        return to_bytes.ofAddress(to_bytes$get(segment), scope);
    }
    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 - 2024 Weber Informatics LLC | Privacy Policy