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.java844 public boolean ignore(int nativeHandle, int debounceMs, ITagRemovedCallback callback) in ignore() argument
848 TagEndpoint tag = (TagEndpoint) findAndRemoveObject(nativeHandle); in ignore()
1064 public int connect(int nativeHandle, int technology) throws RemoteException { in connect() argument
1074 tag = (TagEndpoint) findObject(nativeHandle); in connect()
1094 public int reconnect(int nativeHandle) throws RemoteException { in reconnect() argument
1105 tag = (TagEndpoint) findObject(nativeHandle); in reconnect()
1117 public int[] getTechList(int nativeHandle) throws RemoteException { in getTechList() argument
1126 TagEndpoint tag = (TagEndpoint) findObject(nativeHandle); in getTechList()
1134 public boolean isPresent(int nativeHandle) throws RemoteException { in isPresent() argument
1143 tag = (TagEndpoint) findObject(nativeHandle); in isPresent()
[all …]
/packages/apps/Nfc/nci/jni/
DCondVar.cpp82 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle()); in wait()
122 int waitResult = pthread_cond_timedwait (&mCondition, mutex.nativeHandle(), &absoluteTime); in wait()
DMutex.h97 pthread_mutex_t* nativeHandle ();
DMutex.cpp134 pthread_mutex_t* Mutex::nativeHandle () in nativeHandle() function in Mutex