Home
last modified time | relevance | path

Searched refs:freeFunction (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/libcore/util/
DNativeAllocationRegistry.java50 private final long freeFunction; field in NativeAllocationRegistry
80 ClassLoader classLoader, long freeFunction, long size) { in createNonmalloced() argument
81 return new NativeAllocationRegistry(classLoader, freeFunction, size, false); in createNonmalloced()
107 ClassLoader classLoader, long freeFunction, long size) { in createMalloced() argument
108 return new NativeAllocationRegistry(classLoader, freeFunction, size, true); in createMalloced()
124 ClassLoader classLoader, long freeFunction) { in createMalloced() argument
125 return new NativeAllocationRegistry(classLoader, freeFunction, 0, true); in createMalloced()
156 private NativeAllocationRegistry(ClassLoader classLoader, long freeFunction, long size, in NativeAllocationRegistry() argument
162 this.freeFunction = freeFunction; in NativeAllocationRegistry()
195 public NativeAllocationRegistry(ClassLoader classLoader, long freeFunction, long size) { in NativeAllocationRegistry() argument
[all …]
/libcore/luni/src/main/native/
Dlibcore_util_NativeAllocationRegistry.cpp24 jlong freeFunction, in NativeAllocationRegistry_applyFreeFunction() argument
28 = reinterpret_cast<FreeFunction>(static_cast<uintptr_t>(freeFunction)); in NativeAllocationRegistry_applyFreeFunction()