Package org.freedesktop.wayland.raw
Class wl_array
java.lang.Object
org.freedesktop.wayland.raw.wl_array
-
Method Summary
Modifier and TypeMethodDescriptionstatic long
alloc
(MemorySegment struct) Getter for field:size_t alloc
static void
alloc
(MemorySegment struct, long fieldValue) Setter for field:size_t alloc
static final ValueLayout.OfLong
Layout for field:size_t alloc
static final long
Offset for field:size_t alloc
static MemorySegment
allocate
(SegmentAllocator allocator) Allocate a segment of sizelayout().byteSize()
usingallocator
static MemorySegment
allocateArray
(long elementCount, SegmentAllocator allocator) Allocate an array of sizeelementCount
usingallocator
.static MemorySegment
asSlice
(MemorySegment array, long index) Obtains a slice ofarrayParam
which selects the array element atindex
.static MemorySegment
data
(MemorySegment struct) Getter for field:void *data
static void
data
(MemorySegment struct, MemorySegment fieldValue) Setter for field:void *data
static final AddressLayout
Layout for field:void *data
static final long
Offset for field:void *data
static final GroupLayout
layout()
The layout of this structstatic MemorySegment
reinterpret
(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
andcleanupAction
(if any).static MemorySegment
reinterpret
(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
andcleanupAction
(if any).static long
size
(MemorySegment struct) Getter for field:size_t size
static void
size
(MemorySegment struct, long fieldValue) Setter for field:size_t size
static final ValueLayout.OfLong
Layout for field:size_t size
static final long
Offset for field:size_t size
static long
sizeof()
The size (in bytes) of this struct
-
Method Details
-
layout
The layout of this struct -
size$layout
Layout for field:size_t size
-
size$offset
public static final long size$offset()Offset for field:size_t size
-
size
Getter for field:size_t size
-
size
Setter for field:size_t size
-
alloc$layout
Layout for field:size_t alloc
-
alloc$offset
public static final long alloc$offset()Offset for field:size_t alloc
-
alloc
Getter for field:size_t alloc
-
alloc
Setter for field:size_t alloc
-
data$layout
Layout for field:void *data
-
data$offset
public static final long data$offset()Offset for field:void *data
-
data
Getter for field:void *data
-
data
Setter for field:void *data
-
asSlice
Obtains a slice ofarrayParam
which selects the array element atindex
. The returned segment has addressarrayParam.address() + index * layout().byteSize()
-
sizeof
public static long sizeof()The size (in bytes) of this struct -
allocate
Allocate a segment of sizelayout().byteSize()
usingallocator
-
allocateArray
Allocate an array of sizeelementCount
usingallocator
. The returned segment has sizeelementCount * layout().byteSize()
. -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
andcleanupAction
(if any). The returned segment has sizelayout().byteSize()
-
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
andcleanupAction
(if any). The returned segment has sizeelementCount * layout().byteSize()
-