Home
last modified time | relevance | path

Searched refs:nativeHandle (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java1109 public boolean ignore(int nativeHandle, int debounceMs, ITagRemovedCallback callback) in ignore() argument
1114 && nativeHandle == mDebounceTagNativeHandle) { in ignore()
1121 TagEndpoint tag = (TagEndpoint) findAndRemoveObject(nativeHandle); in ignore()
1127 mDebounceTagNativeHandle = nativeHandle; in ignore()
1362 public int connect(int nativeHandle, int technology) throws RemoteException { in connect() argument
1372 tag = (TagEndpoint) findObject(nativeHandle); in connect()
1392 public int reconnect(int nativeHandle) throws RemoteException { in reconnect() argument
1403 tag = (TagEndpoint) findObject(nativeHandle); in reconnect()
1415 public int[] getTechList(int nativeHandle) throws RemoteException { in getTechList() argument
1424 TagEndpoint tag = (TagEndpoint) findObject(nativeHandle); in getTechList()
[all …]
/packages/apps/Nfc/nci/jni/
DCondVar.cpp79 int const res = pthread_cond_wait(&mCondition, mutex.nativeHandle()); in wait()
113 pthread_cond_timedwait(&mCondition, mutex.nativeHandle(), &absoluteTime); in wait()
DMutex.h90 pthread_mutex_t* nativeHandle();
DMutex.cpp123 pthread_mutex_t* Mutex::nativeHandle() { return &mMutex; } in nativeHandle() function in Mutex