Home
last modified time | relevance | path

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

/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/libcore/util/
DNativeAllocationRegistry.java34 ClassLoader classLoader, long freeFunction, long size) { in createNonmalloced() argument
35 return new NativeAllocationRegistry(classLoader, freeFunction, size, false); in createNonmalloced()
39 ClassLoader classLoader, long freeFunction, long size) { in createMalloced() argument
40 return new NativeAllocationRegistry(classLoader, freeFunction, size, true); in createMalloced()
44 ClassLoader classLoader, long freeFunction) { in createMalloced() argument
45 return new NativeAllocationRegistry(classLoader, freeFunction, 0, true); in createMalloced()
48 public NativeAllocationRegistry(ClassLoader classLoader, long freeFunction, long size) { in NativeAllocationRegistry() argument
49 this(classLoader, freeFunction, size, size == 0); in NativeAllocationRegistry()
52 private NativeAllocationRegistry(ClassLoader classLoader, long freeFunction, long size, in NativeAllocationRegistry() argument
57 mFreeFunction = freeFunction; in NativeAllocationRegistry()
/frameworks/layoutlib/bridge/src/libcore/util/
DNativeAllocationRegistry_Delegate.java54 /*package*/ static void applyFreeFunction(long freeFunction, long nativePtr) { in applyFreeFunction() argument
59 NativeAllocationRegistry_Delegate delegate = sManager.getDelegate(freeFunction); in applyFreeFunction()
62 } else if (freeFunction != 0) { in applyFreeFunction()
63 nativeApplyFreeFunction(freeFunction, nativePtr); in applyFreeFunction()
73 private static native void nativeApplyFreeFunction(long freeFunction, long nativePtr); in nativeApplyFreeFunction() argument
/frameworks/base/core/java/android/os/
DHwRemoteBinder.java56 long freeFunction = native_init();
60 freeFunction,
DHwBinder.java143 long freeFunction = native_init();
147 freeFunction,
DHwBlob.java450 long freeFunction = native_init();
454 freeFunction,
DHwParcel.java693 long freeFunction = native_init();
697 freeFunction,
/frameworks/base/ravenwood/runtime-jni/
Dravenwood_runtime.cpp48 static void nApplyFreeFunction(JNIEnv*, jclass, jlong freeFunction, jlong ptr) { in nApplyFreeFunction() argument
51 = reinterpret_cast<FreeFunction>(static_cast<uintptr_t>(freeFunction)); in nApplyFreeFunction()
/frameworks/base/ravenwood/runtime-common-src/com/android/ravenwood/common/
DRavenwoodRuntimeNative.java32 public static native void applyFreeFunction(long freeFunction, long nativePtr); in applyFreeFunction() argument
/frameworks/base/core/jni/platform/host/
DHostRuntime.cpp64 jlong freeFunction, in NativeAllocationRegistry_Delegate_nativeApplyFreeFunction() argument
68 reinterpret_cast<FreeFunction>(static_cast<uintptr_t>(freeFunction)); in NativeAllocationRegistry_Delegate_nativeApplyFreeFunction()