Searched defs:tech (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Nfc/nci/jni/
H A DRouteDataSet.cpp550 RouteDataForTechnology* tech = (RouteDataForTechnology*) routeData; local
551 ALOGD ("%s: ee h=0x%X; technology=0x%X", fn, tech->mNfaEeHandle, tech->mTechnology);
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc_NativeNfcSecureElement.cpp164 TRACE("Discovered secure element: tech=%d", SecureElementTech);
167 ALOGE("Discovered secure element, but could not resolve tech");
618 int tech = SecureElementTech; local
632 TRACE("Secure Element tech: %d\n", tech);
638 if(tech == TARGET_TYPE_MIFARE_CLASSIC || tech == TARGET_TYPE_MIFARE_UL)
644 else if(tech == TARGET_TYPE_ISO14443_4)
H A Dcom_android_nfc_NativeNfcManager.cpp1552 jint tech, jint timeout) {
1559 switch (tech) {
1577 ALOGW("doSetTimeout: Timeout not supported for tech %d", tech);
1586 jint tech) {
1589 switch (tech) {
1621 ALOGW("doGetTimeout: Timeout not supported for tech %d", tech);
1551 com_android_nfc_NfcManager_doSetTimeout( JNIEnv *e, jobject o, jint tech, jint timeout) argument
1585 com_android_nfc_NfcManager_doGetTimeout( JNIEnv *e, jobject o, jint tech) argument
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java27 import android.nfc.tech.Ndef;
28 import android.nfc.tech.TagTechnology;
225 private native boolean doSetTimeout(int tech, int timeout); argument
227 public boolean setTimeout(int tech, int timeout) { argument
228 return doSetTimeout(tech, timeout);
231 private native int doGetTimeout(int tech); argument
233 public int getTimeout(int tech) { argument
234 return doGetTimeout(tech);
H A DNativeNfcTag.java23 import android.nfc.tech.IsoDep;
24 import android.nfc.tech.MifareClassic;
25 import android.nfc.tech.MifareUltralight;
26 import android.nfc.tech.Ndef;
27 import android.nfc.tech.NfcA;
28 import android.nfc.tech.NfcB;
29 import android.nfc.tech.NfcF;
30 import android.nfc.tech.NfcV;
31 import android.nfc.tech.NfcBarcode;
32 import android.nfc.tech
446 addTechnology(int tech, int handle, int libnfctype) argument
464 removeTechnology(int tech) argument
543 getTechIndex(int tech) argument
554 hasTech(int tech) argument
565 hasTechOnHandle(int tech, int handle) argument
[all...]
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java27 import android.nfc.tech.Ndef;
28 import android.nfc.tech.TagTechnology;
275 private native boolean doSetTimeout(int tech, int timeout); argument
277 public boolean setTimeout(int tech, int timeout) { argument
278 return doSetTimeout(tech, timeout);
281 private native int doGetTimeout(int tech); argument
283 public int getTimeout(int tech) { argument
284 return doGetTimeout(tech);
H A DNativeNfcTag.java23 import android.nfc.tech.IsoDep;
24 import android.nfc.tech.MifareClassic;
25 import android.nfc.tech.MifareUltralight;
26 import android.nfc.tech.Ndef;
27 import android.nfc.tech.NfcA;
28 import android.nfc.tech.NfcB;
29 import android.nfc.tech.NfcF;
30 import android.nfc.tech.NfcV;
31 import android.nfc.tech.TagTechnology;
161 // Connect to a tech wit
454 addTechnology(int tech, int handle, int libnfctype) argument
472 removeTechnology(int tech) argument
538 getTechIndex(int tech) argument
549 hasTech(int tech) argument
560 hasTechOnHandle(int tech, int handle) argument
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java81 void removeTechnology(int tech); // TODO remove this one argument
H A DNfcService.java55 import android.nfc.tech.Ndef;
56 import android.nfc.tech.TagTechnology;
933 // Validate the tech lists
1298 public int setTimeout(int tech, int timeout) throws RemoteException { argument
1300 boolean success = mDeviceHost.setTimeout(tech, timeout);
1309 public int getTimeout(int tech) throws RemoteException { argument
1312 return mDeviceHost.getTimeout(tech);
1328 public int getMaxTransceiveLength(int tech) throws RemoteException { argument
1329 return mDeviceHost.getMaxTransceiveLength(tech);

Completed in 126 milliseconds