NativeFreeablePlacement

Functions

Link copied to clipboard
open fun alloc(size: Int, align: Int): NativePointed
abstract fun alloc(size: Long, align: Int): NativePointed
Link copied to clipboard
abstract fun free(mem: NativePtr)

Inheritors

Link copied to clipboard

Extensions

Link copied to clipboard
inline fun <T : CVariable> NativePlacement.alloc(): T

Allocates variable of given type.

inline fun <T : CVariable> NativePlacement.alloc(initialize: T.() -> Unit): T

Allocates variable of given type and initializes it applying given block.

Link copied to clipboard

Allocates C array of given elements type and length.

inline fun <T : CVariable> NativePlacement.allocArray(length: Long, initializer: T.(index: Long) -> Unit): CArrayPointer<T>
inline fun <T : CVariable> NativePlacement.allocArray(length: Int, initializer: T.(index: Int) -> Unit): CArrayPointer<T>

Allocates C array of given elements type and length, and initializes its elements applying given block.

Link copied to clipboard
inline fun <T : CPointer<*>> NativePlacement.allocArrayOf(vararg elements: T?): CArrayPointer<CPointerVarOf<T>>

Allocates C array of given values.

Link copied to clipboard

Allocates C array of pointers to given elements.

Link copied to clipboard
Link copied to clipboard