Package org.lwjgl.system.linux
Class Msghdr.Buffer
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.CustomBuffer<SELF>
-
- org.lwjgl.system.StructBuffer<Msghdr,Msghdr.Buffer>
-
- org.lwjgl.system.linux.Msghdr.Buffer
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,java.lang.Iterable<Msghdr>
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
- Enclosing class:
- Msghdr
public static class Msghdr.Buffer extends org.lwjgl.system.StructBuffer<Msghdr,Msghdr.Buffer> implements org.lwjgl.system.NativeResource
An array ofMsghdr
structs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.ByteBuffer
msg_control()
Msghdr.Buffer
msg_control(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to theMsghdr.msg_control()
field.long
msg_controllen()
int
msg_flags()
Msghdr.Buffer
msg_flags(int value)
Sets the specified value to theMsghdr.msg_flags()
field.IOVec.Buffer
msg_iov()
Msghdr.Buffer
msg_iov(IOVec.Buffer value)
Sets the address of the specifiedIOVec.Buffer
to theMsghdr.msg_iov()
field.long
msg_iovlen()
java.nio.ByteBuffer
msg_name()
Msghdr.Buffer
msg_name(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to theMsghdr.msg_name()
field.int
msg_namelen()
-
-
-
Constructor Detail
-
Buffer
public Buffer(java.nio.ByteBuffer container)
Creates a newMsghdr.Buffer
instance backed by the specified container. Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided byMsghdr.SIZEOF
, and its mark will be undefined.The created buffer instance holds a strong reference to the container object.
-
Buffer
public Buffer(long address, int cap)
-
-
Method Detail
-
msg_name
public java.nio.ByteBuffer msg_name()
- Returns:
- a
ByteBuffer
view of the data pointed to by theMsghdr.msg_name()
field.
-
msg_namelen
public int msg_namelen()
- Returns:
- the value of the
Msghdr.msg_namelen()
field.
-
msg_iov
public IOVec.Buffer msg_iov()
- Returns:
- a
IOVec.Buffer
view of the struct array pointed to by theMsghdr.msg_iov()
field.
-
msg_iovlen
public long msg_iovlen()
- Returns:
- the value of the
Msghdr.msg_iovlen()
field.
-
msg_control
public java.nio.ByteBuffer msg_control()
- Returns:
- a
ByteBuffer
view of the data pointed to by theMsghdr.msg_control()
field.
-
msg_controllen
public long msg_controllen()
- Returns:
- the value of the
Msghdr.msg_controllen()
field.
-
msg_flags
public int msg_flags()
- Returns:
- the value of the
Msghdr.msg_flags()
field.
-
msg_name
public Msghdr.Buffer msg_name(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to theMsghdr.msg_name()
field.
-
msg_iov
public Msghdr.Buffer msg_iov(IOVec.Buffer value)
Sets the address of the specifiedIOVec.Buffer
to theMsghdr.msg_iov()
field.
-
msg_control
public Msghdr.Buffer msg_control(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to theMsghdr.msg_control()
field.
-
msg_flags
public Msghdr.Buffer msg_flags(int value)
Sets the specified value to theMsghdr.msg_flags()
field.
-
-