Uses of Class
jnr.ffi.Struct
-
Packages that use Struct Package Description jnr.ffi jnr.ffi.provider.converters -
-
Uses of Struct in jnr.ffi
Classes in jnr.ffi with type parameters of type Struct Modifier and Type Class Description classStruct.StructRef<T extends Struct>Represents a reference to a Struct or and array of StructsSubclasses of Struct in jnr.ffi Modifier and Type Class Description classUnionRepresents a C unionMethods in jnr.ffi with type parameters of type Struct Modifier and Type Method Description protected <T extends Struct>
T[]Struct. array(T[] array)Creates an array ofStructinstances.static <T extends Struct>
T[]Struct. arrayOf(Runtime runtime, Class<T> type, int length)protected <T extends Struct>
TStruct. inner(Class<T> structClass)Creates inner Structs in Struct definitions.protected <T extends Struct>
TStruct. inner(T struct)Creates inner Structs in Struct definitions.static <T extends Struct>
intStruct. size(Class<T> structClass)Gets the size of a Struct type in bytesstatic <T extends Struct>
intStruct. size(Class<T> structClass, Runtime runtime)Gets the size of a Struct type in bytesMethods in jnr.ffi that return Struct Modifier and Type Method Description protected <T extends Struct>
T[]Struct. array(T[] array)Creates an array ofStructinstances.static <T extends Struct>
T[]Struct. arrayOf(Runtime runtime, Class<T> type, int length)T[]Struct.StructRef. get(int length)StructStruct.AbstractMember. struct()Gets theStructthisMemberis a member of.StructStruct.NumberField. struct()Gets theStructthisMemberis in.Methods in jnr.ffi with parameters of type Struct Modifier and Type Method Description static intStruct. alignment(Struct struct)protected <T extends Struct>
T[]Struct. array(T[] array)Creates an array ofStructinstances.static PointerStruct. getMemory(Struct struct)static PointerStruct. getMemory(Struct struct, int flags)static booleanStruct. isDirect(Struct struct)voidStruct.StructRef. set(T[] structs)static intStruct. size(Struct struct)Gets the size of a Struct instance in bytesConstructors in jnr.ffi with parameters of type Struct Constructor Description Struct(Runtime runtime, Struct enclosing) -
Uses of Struct in jnr.ffi.provider.converters
Methods in jnr.ffi.provider.converters that return Struct Modifier and Type Method Description StructStructByReferenceFromNativeConverter. fromNative(Pointer nativeValue, FromNativeContext context)Methods in jnr.ffi.provider.converters that return types with arguments of type Struct Modifier and Type Method Description static FromNativeConverter<Struct,Pointer>StructByReferenceFromNativeConverter. getInstance(Class structClass, FromNativeContext toNativeContext)static ToNativeConverter<Struct,Pointer>StructByReferenceToNativeConverter. getInstance(ToNativeContext toNativeContext)Methods in jnr.ffi.provider.converters with parameters of type Struct Modifier and Type Method Description voidStructArrayParameterConverter.Out. postInvoke(Struct[] structs, Pointer primitive, ToNativeContext context)PointerStructArrayParameterConverter. toNative(Struct[] structs, ToNativeContext context)PointerStructByReferenceToNativeConverter. toNative(Struct value, ToNativeContext ctx)
-