Home
last modified time | relevance | path

Searched defs:nativeHandle (Results 1 – 25 of 145) sorted by relevance

123456

/aosp_15_r20/frameworks/base/nfc/java/android/nfc/
H A DINfcTag.aidl28 int connect(int nativeHandle, int technology); in connect()
29 int reconnect(int nativeHandle); in reconnect()
30 int[] getTechList(int nativeHandle); in getTechList()
31 boolean isNdef(int nativeHandle); in isNdef()
32 boolean isPresent(int nativeHandle); in isPresent()
33 TransceiveResult transceive(int nativeHandle, in byte[] data, boolean raw); in transceive()
35 NdefMessage ndefRead(int nativeHandle); in ndefRead()
36 int ndefWrite(int nativeHandle, in NdefMessage msg); in ndefWrite()
37 int ndefMakeReadOnly(int nativeHandle); in ndefMakeReadOnly()
38 boolean ndefIsWritable(int nativeHandle); in ndefIsWritable()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
H A DServer.java118 private static native void start(long nativeHandle); in start()
120 private static native void stop(long nativeHandle); in stop()
122 private static native void join(long nativeHandle); in join()
124 private static native void delete(long nativeHandle); in delete()
126 private long nativeHandle; field in Server
H A DGraph.java36 Graph(long nativeHandle) { in Graph()
350 private long nativeHandle; field in Graph
384 public long nativeHandle() { in nativeHandle() method in Graph.Reference
H A DEagerSession.java347 long nativeHandle() { in nativeHandle() method in EagerSession
508 private long nativeHandle; field in EagerSession
H A DSession.java78 Session(Graph g, long nativeHandle) { in Session()
443 private long nativeHandle; field in Session
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/io/
H A DTlsKeyOperation.java67 …protected TlsKeyOperation(long nativeHandle, byte[] inputData, int operationType, int signatureAlg… in TlsKeyOperation()
155 CrtResourceInternal(long nativeHandle) { in CrtResourceInternal()
186 private static native void tlsKeyOperationComplete(long nativeHandle, byte[] output); in tlsKeyOperationComplete()
187 … private static native void tlsKeyOperationCompleteExceptionally(long nativeHandle, Throwable ex); in tlsKeyOperationCompleteExceptionally()
/aosp_15_r20/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java50 private final long nativeHandle; field in StrictJarFile
263 EntryIterator(long nativeHandle, String prefix) throws IOException { in EntryIterator()
497 private static native long nativeStartIteration(long nativeHandle, String prefix); in nativeStartIteration()
499 private static native ZipEntry nativeFindEntry(long nativeHandle, String entryName); in nativeFindEntry()
500 private static native void nativeClose(long nativeHandle); in nativeClose()
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/task/core/
H A DBaseTaskApi.java32 private final long nativeHandle; field in BaseTaskApi
42 protected BaseTaskApi(long nativeHandle) { in BaseTaskApi()
90 protected abstract void deinit(long nativeHandle); in deinit()
/aosp_15_r20/hardware/interfaces/tv/tuner/1.1/default/
H A DFilter.cpp267 native_handle_t* nativeHandle = createNativeHandle(av_fd); in getAvSharedHandle() local
859 native_handle_t* nativeHandle; in createNativeHandle() local
888 native_handle_t* nativeHandle = createNativeHandle(av_fd); in createIndependentMediaEvents() local
932 native_handle_t* nativeHandle = createNativeHandle(-1); in createShareMemMediaEvents() local
998 native_handle_t* nativeHandle = createNativeHandle(av_fd); in createMediaEvent() local
/aosp_15_r20/frameworks/base/core/jni/
H A Dandroid_util_jar_StrictJarFile.cpp95 jlong StrictJarFile_nativeStartIteration(JNIEnv* env, jobject, jlong nativeHandle, in StrictJarFile_nativeStartIteration()
129 jobject StrictJarFile_nativeFindEntry(JNIEnv* env, jobject, jlong nativeHandle, in StrictJarFile_nativeFindEntry()
146 void StrictJarFile_nativeClose(JNIEnv*, jobject, jlong nativeHandle) { in StrictJarFile_nativeClose()
/aosp_15_r20/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java2433 public boolean ignore(int nativeHandle, int debounceMs, ITagRemovedCallback callback) in ignore()
3446 public int connect(int nativeHandle, int technology) throws RemoteException { in connect()
3480 public int reconnect(int nativeHandle) throws RemoteException { in reconnect()
3507 public int[] getTechList(int nativeHandle) throws RemoteException { in getTechList()
3528 public boolean isPresent(int nativeHandle) throws RemoteException { in isPresent()
3550 public boolean isNdef(int nativeHandle) throws RemoteException { in isNdef()
3574 public TransceiveResult transceive(int nativeHandle, byte[] data, boolean raw) in transceive()
3613 public NdefMessage ndefRead(int nativeHandle) throws RemoteException { in ndefRead()
3646 public int ndefWrite(int nativeHandle, NdefMessage msg) throws RemoteException { in ndefWrite()
3677 public boolean ndefIsWritable(int nativeHandle) throws RemoteException { in ndefIsWritable()
[all …]
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/auth/credentials/
H A DCredentialsProvider.java90 …vate static native void credentialsProviderDestroy(CredentialsProvider thisObj, long nativeHandle); in credentialsProviderDestroy()
91 …Credentials(CredentialsProvider thisObj, CompletableFuture<Credentials> future, long nativeHandle); in credentialsProviderGetCredentials()
/aosp_15_r20/hardware/interfaces/tv/tuner/aidl/default/
H A DFilter.cpp1117 native_handle_t* nativeHandle; in createNativeHandle() local
1148 native_handle_t* nativeHandle = createNativeHandle(av_fd); in createIndependentMediaEvents() local
1196 native_handle_t* nativeHandle = createNativeHandle(-1); in createShareMemMediaEvents() local
1292 native_handle_t* nativeHandle = createNativeHandle(av_fd); in createMediaEvent() local
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/cal/
H A DEccKeyPair.java88 private EccKeyPair(long nativeHandle) { in EccKeyPair()
118 long nativeHandle = eccKeyPairNewFromCredentials(credentials, curve.getNativeValue()); in newDeriveFromCredentials() local
/aosp_15_r20/external/minigbm/cros_gralloc/gralloc4/
H A DCrosGralloc4Utils.cc94 const native_handle_t* nativeHandle = fenceHandle.getNativeHandle(); in convertToFenceFd() local
104 native_handle_t* nativeHandle = nullptr; in convertToFenceHandle() local
/aosp_15_r20/out/soong/.intermediates/external/tflite-support/tflite_support_classifiers_java/android_common_apex33/javac/
Dtflite_support_classifiers_java.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tensorflow/ org/ ...
/aosp_15_r20/out/soong/.intermediates/external/tflite-support/tflite_support_classifiers_java/android_common_apex30/javac/
Dtflite_support_classifiers_java.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tensorflow/ org/ ...
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/
H A DCrtResource.java40 public long nativeHandle; field in CrtResource.ResourceInstance
96 private long nativeHandle; field in CrtResource
/aosp_15_r20/frameworks/base/core/java/android/os/
H A DSystemProperties.java349 long nativeHandle = native_find(name); in find() local
393 private Handle(long nativeHandle) { in Handle()
/aosp_15_r20/hardware/interfaces/neuralnetworks/aidl/utils/src/
H A DConversions.cpp123 auto nativeHandle = UniqueNativeHandle(dupFromAidl(handle)); in nativeHandleFromAidlHandle() local
405 const native_handle_t* nativeHandle = handle.get(); in unvalidatedConvert() local
650 const native_handle_t& nativeHandle) { in aidlHandleFromNativeHandle()
707 const native_handle_t* nativeHandle = AHardwareBuffer_getNativeHandle(memory.handle.get()); in unvalidatedConvert() local
/aosp_15_r20/hardware/interfaces/tv/tuner/1.0/default/
H A DFilter.cpp528 native_handle_t* nativeHandle = createNativeHandle(av_fd); in createMediaFilterEventWithIon() local
654 native_handle_t* nativeHandle = native_handle_create(/*numFd*/ 1, 0); in createNativeHandle() local
/aosp_15_r20/external/tensorflow/tensorflow/lite/java/src/main/java/org/tensorflow/lite/
H A DTensorImpl.java469 private long nativeHandle; field in TensorImpl
475 private TensorImpl(long nativeHandle) { in TensorImpl()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/util/
H A DvktExternalMemoryUtil.cpp529 … vk::VkExternalMemoryHandleTypeFlagBits externalType, NativeHandle &nativeHandle) in getMemoryNative()
625 vk::VkExternalFenceHandleTypeFlagBits externalType, NativeHandle &nativeHandle, in getFenceNative()
764 … vk::VkExternalSemaphoreHandleTypeFlagBits externalType, NativeHandle &nativeHandle) in getSemaphoreNative()
/aosp_15_r20/out/soong/.intermediates/external/tflite-support/tflite_support_base_task_api_java/android_common_apex33/javac/
Dtflite_support_base_task_api_java.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tensorflow/ org/ ...
/aosp_15_r20/out/soong/.intermediates/external/tflite-support/tflite_support_base_task_api_java/android_common_apex30/javac/
Dtflite_support_base_task_api_java.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tensorflow/ org/ ...

123456