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

  /frameworks/base/graphics/java/android/graphics/
ColorFilter.java 42 private long mNativeInstance;
51 if (mNativeInstance != 0) {
54 mNativeInstance = 0;
60 if (mNativeInstance == 0) {
61 mNativeInstance = createNativeInstance();
63 if (mNativeInstance != 0) {
68 this, mNativeInstance);
71 return mNativeInstance;
Shader.java 47 private long mNativeInstance;
121 if (mNativeInstance != 0) {
124 mNativeInstance = 0;
156 // verify mNativeInstance is valid
159 if (mNativeInstance == 0) {
160 mNativeInstance = createNativeInstance(mLocalMatrix == null
162 if (mNativeInstance != 0) {
164 this, mNativeInstance);
167 return mNativeInstance;
  /cts/tests/sensor/src/android/hardware/cts/
SensorNativeTest.java 37 private long mNativeInstance;
46 mNativeInstance = nativeSetUp();
47 assertTrue("create native instance failed", mNativeInstance != 0);
52 nativeTearDown(mNativeInstance);
56 nativeTest(mNativeInstance);
  /cts/tests/tests/nativehardware/src/android/hardware/cts/
AHardwareBufferNativeTest.java 31 private long mNativeInstance;
40 mNativeInstance = nativeSetUp();
41 assertTrue("create native instance failed", mNativeInstance != 0);
46 nativeTearDown(mNativeInstance);
51 nativeTest(mNativeInstance, pm.hasSystemFeature(
  /frameworks/base/core/java/android/hardware/camera2/
CameraMetadata.java 55 private CameraMetadataNative mNativeInstance = null;
94 mNativeInstance = nativeInstance;
184 if (null == mNativeInstance) {
188 ArrayList<TKey> vendorKeys = mNativeInstance.getAllVendorKeys(keyClass);
    [all...]
  /frameworks/base/core/java/android/hardware/
SystemSensorManager.java 100 private final long mNativeInstance;
114 mNativeInstance = nativeCreate(context.getOpPackageName());
119 if (!nativeGetSensorAtIndex(mNativeInstance, sensor, index)) break;
290 boolean isDataInjectionModeEnabled = nativeIsDataInjectionEnabled(mNativeInstance);
371 nativeGetDynamicSensors(mNativeInstance, list);
543 mNativeInstance, channel.getNativeHandle(), sensorHandle, rate);
574 mNativeInstance, size, SensorDirectChannel.TYPE_MEMORY_FILE, fd, null);
598 mNativeInstance, size, SensorDirectChannel.TYPE_HARDWARE_BUFFER,
614 nativeDestroyDirectChannel(mNativeInstance, channel.getNativeHandle());
649 nSensorEventQueue = nativeInitBaseEventQueue(manager.mNativeInstance,
    [all...]

Completed in 216 milliseconds