| java.lang.Object org.apache.harmony.misc.accessors.Malloc
Malloc | class Malloc (Code) | | Utility class which is used to host the native memory access functions
|
Method Summary | |
native static void | free(long addr) | native static int | getCLongSize() | native static int | getPointerSize() | native static long | malloc(long size) | native static int | memcmp(long addr, long addr1, long size) | native static long | memcpy(long dst, long src, long size) | native static long | memmove(long dst, long src, long size) | native static long | memset(long addr, int fill, long size) | native static long | realloc(long addr, long size) | native static long | strncpy(long dst, long src, long size) |
free | native static void free(long addr)(Code) | | |
getCLongSize | native static int getCLongSize()(Code) | | |
getPointerSize | native static int getPointerSize()(Code) | | |
malloc | native static long malloc(long size)(Code) | | |
memcmp | native static int memcmp(long addr, long addr1, long size)(Code) | | |
memcpy | native static long memcpy(long dst, long src, long size)(Code) | | |
memmove | native static long memmove(long dst, long src, long size)(Code) | | |
memset | native static long memset(long addr, int fill, long size)(Code) | | |
realloc | native static long realloc(long addr, long size)(Code) | | |
strncpy | native static long strncpy(long dst, long src, long size)(Code) | | |
|
|