HomeSort by relevance Sort by last modified time
    Searched refs:registerNativeAllocation (Results 1 - 21 of 21) sorted by null

  /libcore/luni/src/main/java/libcore/util/
NativeAllocationRegistry.java 113 public Runnable registerNativeAllocation(Object referent, long nativePtr) {
122 registerNativeAllocation(this.size);
134 * {@link #registerNativeAllocation(Object, Allocator) registerNativeAllocation(Object, Allocator)}.
161 public Runnable registerNativeAllocation(Object referent, Allocator allocator) {
165 registerNativeAllocation(this.size);
218 private static void registerNativeAllocation(long size) {
219 VMRuntime.getRuntime().registerNativeAllocation((int)Math.min(size, Integer.MAX_VALUE));
  /libcore/luni/src/test/java/libcore/util/
NativeAllocationRegistryTest.java 79 registry.registerNativeAllocation(alloc, allocator);
82 registry.registerNativeAllocation(alloc, alloc.nativeAllocation);
126 Runnable cleaner = registry.registerNativeAllocation(referent, nativePtr);
152 registry.registerNativeAllocation(null, dummyNativePtr);
159 registry.registerNativeAllocation(referent, 0);
166 registry.registerNativeAllocation(null,
178 assertNull(registry.registerNativeAllocation(referent,
  /art/tools/ahat/test-dump/
Main.java 55 registry.registerNativeAllocation(anObject, 0xABCDABCD);
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 33 registry.registerNativeAllocation(referrent, converterHandle);
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 303 public native void registerNativeAllocation(int bytes);
  /libcore/luni/src/main/java/java/math/
BigInt.java 46 registry.registerNativeAllocation(this, this.bignum);
53 registry.registerNativeAllocation(bi, bi.bignum);
  /frameworks/base/media/java/android/media/
ImageReader.java 165 VMRuntime.getRuntime().registerNativeAllocation(mEstimatedNativeAllocBytes);
    [all...]
ImageWriter.java 149 VMRuntime.getRuntime().registerNativeAllocation(mEstimatedNativeAllocBytes);
    [all...]
  /libcore/ojluni/src/main/java/java/util/regex/
Matcher.java 229 nativeFinalizer = registry.registerNativeAllocation(this, address);
    [all...]
Pattern.java     [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 113 mFinalizer = NoImagePreloadHolder.sRegistry.registerNativeAllocation(
135 mFinalizer = NoImagePreloadHolder.sRegistry.registerNativeAllocation(
147 mFinalizer = NoImagePreloadHolder.sRegistry.registerNativeAllocation(
    [all...]
Paint.java 458 NoImagePreloadHolder.sRegistry.registerNativeAllocation(this, mNativePaint);
477 NoImagePreloadHolder.sRegistry.registerNativeAllocation(this, mNativePaint);
    [all...]
Bitmap.java 137 registry.registerNativeAllocation(this, nativeBitmap);
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 330 VMRuntime.getRuntime().registerNativeAllocation(deltaInBytes);
831 VMRuntime.getRuntime().registerNativeAllocation(NATIVE_ALLOCATION_SIZE);
    [all...]
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java 72 static Method registerNativeAllocation;
115 registerNativeAllocation = vm_runtime.getDeclaredMethod("registerNativeAllocation", Integer.TYPE);
    [all...]
Allocation.java 416 RenderScript.registerNativeAllocation.invoke(RenderScript.sRuntime, mSize);
418 Log.e(RenderScript.LOG_TAG, "Couldn't invoke registerNativeAllocation:" + e);
419 throw new RSRuntimeException("Couldn't invoke registerNativeAllocation:" + e);
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScript.java 98 static Method registerNativeAllocation;
    [all...]
Allocation.java 384 RenderScript.registerNativeAllocation.invoke(RenderScript.sRuntime, mSize);
386 Log.e(RenderScript.LOG_TAG, "Couldn't invoke registerNativeAllocation:" + e);
387 throw new RSRuntimeException("Couldn't invoke registerNativeAllocation:" + e);
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 216 Runtime::Current()->GetHeap()->RegisterNativeAllocation(env, static_cast<size_t>(bytes));
653 NATIVE_METHOD(VMRuntime, registerNativeAllocation, "(I)V"),
  /frameworks/base/core/java/android/os/
Parcel.java 626 VMRuntime.getRuntime().registerNativeAllocation(delta);
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 857 milliseconds