Home
last modified time | relevance | path

Searched refs:tech (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/nxp/
DNativeNfcTag.java23 import android.nfc.tech.IsoDep;
24 import android.nfc.tech.MifareUltralight;
25 import android.nfc.tech.Ndef;
26 import android.nfc.tech.NfcA;
27 import android.nfc.tech.NfcB;
28 import android.nfc.tech.NfcF;
29 import android.nfc.tech.NfcV;
30 import android.nfc.tech.TagTechnology;
431 private void addTechnology(int tech, int handle, int libnfctype) { in addTechnology() argument
434 mNewTechList[mTechList.length] = tech; in addTechnology()
[all …]
DNativeNfcManager.java28 import android.nfc.tech.Ndef;
29 import android.nfc.tech.TagTechnology;
203 private native boolean doSetTimeout(int tech, int timeout); in doSetTimeout() argument
205 public boolean setTimeout(int tech, int timeout) { in setTimeout() argument
206 return doSetTimeout(tech, timeout); in setTimeout()
209 private native int doGetTimeout(int tech); in doGetTimeout() argument
211 public int getTimeout(int tech) { in getTimeout() argument
212 return doGetTimeout(tech); in getTimeout()
/packages/apps/Nfc/jni/
Dcom_android_nfc_NativeNfcTag.cpp313 for (int tech = 0; tech < techListLength; tech++) { in set_target_pollBytes() local
314 switch(techId[tech]) in set_target_pollBytes()
366 e->SetObjectArrayElement(techPollBytes, tech, pollBytes); in set_target_pollBytes()
399 for (int tech = 0; tech < techListLength; tech++) { in set_target_activationBytes() local
400 switch(techId[tech]) { in set_target_activationBytes()
440 e->SetObjectArrayElement(techActBytes, tech, actBytes); in set_target_activationBytes()
Dcom_android_nfc_NativeNfcSecureElement.cpp600 int tech = SecureElementTech; in com_android_nfc_NativeNfcSecureElement_doTransceive() local
614 TRACE("Secure Element tech: %d\n", tech); in com_android_nfc_NativeNfcSecureElement_doTransceive()
620 if(tech == TARGET_TYPE_MIFARE_CLASSIC || tech == TARGET_TYPE_MIFARE_UL) in com_android_nfc_NativeNfcSecureElement_doTransceive()
626 else if(tech == TARGET_TYPE_ISO14443_4) in com_android_nfc_NativeNfcSecureElement_doTransceive()
Dcom_android_nfc_NativeNfcManager.cpp1694 jint tech, jint timeout) { in com_android_nfc_NfcManager_doSetTimeout() argument
1701 switch (tech) { in com_android_nfc_NfcManager_doSetTimeout()
1719 LOGW("doSetTimeout: Timeout not supported for tech %d", tech); in com_android_nfc_NfcManager_doSetTimeout()
1728 jint tech) { in com_android_nfc_NfcManager_doGetTimeout() argument
1731 switch (tech) { in com_android_nfc_NfcManager_doGetTimeout()
1763 LOGW("doGetTimeout: Timeout not supported for tech %d", tech); in com_android_nfc_NfcManager_doGetTimeout()
/packages/apps/Nfc/src/com/android/nfc/
DRegisteredComponentCache.java95 for (String tech : techs) { in toString()
96 out.append(tech); in toString()
DDeviceHost.java69 void removeTechnology(int tech); // TODO remove this one in removeTechnology() argument
DNfcService.java53 import android.nfc.tech.Ndef;
54 import android.nfc.tech.TagTechnology;
1038 public int setTimeout(int tech, int timeout) throws RemoteException { in setTimeout() argument
1040 boolean success = mDeviceHost.setTimeout(tech, timeout); in setTimeout()
1049 public int getTimeout(int tech) throws RemoteException { in getTimeout() argument
1052 return mDeviceHost.getTimeout(tech); in getTimeout()
1070 public int getMaxTransceiveLength(int tech) throws RemoteException { in getMaxTransceiveLength() argument
1073 return mDeviceHost.getMaxTransceiveLength(tech); in getMaxTransceiveLength()
DNfcDispatcher.java348 for (String tech : filterTechs) { in filterMatch()
349 if (Arrays.binarySearch(tagTechs, tech) < 0) { in filterMatch()