D | NativeAllocationRegistry.java | 51 public class NativeAllocationRegistry { class 93 public static NativeAllocationRegistry createNonmalloced( in createNonmalloced() 95 return new NativeAllocationRegistry(classLoader, freeFunction, size, false); in createNonmalloced() 125 public static NativeAllocationRegistry createMalloced( in createMalloced() 127 return new NativeAllocationRegistry(classLoader, freeFunction, size, true); in createMalloced() 147 public static NativeAllocationRegistry createMalloced( in createMalloced() 149 return new NativeAllocationRegistry(classLoader, freeFunction, DEFAULT_SIZE, true); in createMalloced() 180 private NativeAllocationRegistry(ClassLoader classLoader, long freeFunction, long size, in NativeAllocationRegistry() method in NativeAllocationRegistry 219 … public NativeAllocationRegistry(@NonNull ClassLoader classLoader, long freeFunction, long size) { in NativeAllocationRegistry() method in NativeAllocationRegistry
|