Searched refs:freeFunction (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/libcore/util/ |
D | NativeAllocationRegistry.java | 34 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/ |
D | NativeAllocationRegistry_Delegate.java | 54 /*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/ |
D | HwRemoteBinder.java | 56 long freeFunction = native_init(); 60 freeFunction,
|
D | HwBinder.java | 143 long freeFunction = native_init(); 147 freeFunction,
|
D | HwBlob.java | 450 long freeFunction = native_init(); 454 freeFunction,
|
D | HwParcel.java | 693 long freeFunction = native_init(); 697 freeFunction,
|
/frameworks/base/ravenwood/runtime-jni/ |
D | ravenwood_runtime.cpp | 48 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/ |
D | RavenwoodRuntimeNative.java | 32 public static native void applyFreeFunction(long freeFunction, long nativePtr); in applyFreeFunction() argument
|
/frameworks/base/core/jni/platform/host/ |
D | HostRuntime.cpp | 64 jlong freeFunction, in NativeAllocationRegistry_Delegate_nativeApplyFreeFunction() argument 68 reinterpret_cast<FreeFunction>(static_cast<uintptr_t>(freeFunction)); in NativeAllocationRegistry_Delegate_nativeApplyFreeFunction()
|