Searched refs:tech (Results 1 - 13 of 13) sorted by relevance

/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.TagTechnology;
158 // Connect to a tech wit
445 addTechnology(int tech, int handle, int libnfctype) argument
463 removeTechnology(int tech) argument
542 getTechIndex(int tech) argument
553 hasTech(int tech) argument
564 hasTechOnHandle(int tech, int handle) argument
[all...]
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
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...]
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);
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc_NativeNfcTag.cpp313 for (int tech = 0; tech < techListLength; tech++) {
314 switch(techId[tech])
366 e->SetObjectArrayElement(techPollBytes, tech, pollBytes);
399 for (int tech = 0; tech < techListLength; tech++) {
400 switch(techId[tech]) {
440 e->SetObjectArrayElement(techActBytes, tech, actByte
[all...]
H A Dcom_android_nfc_NativeNfcSecureElement.cpp164 TRACE("Discovered secure element: tech=%d", SecureElementTech);
167 ALOGE("Discovered secure element, but could not resolve tech");
172 // so make sure to delete the local refernce to the tech list.
619 int tech = SecureElementTech; local
633 TRACE("Secure Element tech: %d\n", tech);
639 if(tech == TARGET_TYPE_MIFARE_CLASSIC || tech == TARGET_TYPE_MIFARE_UL)
645 else if(tech == TARGET_TYPE_ISO14443_4)
H A Dcom_android_nfc_NativeNfcManager.cpp1542 jint tech, jint timeout) {
1549 switch (tech) {
1567 ALOGW("doSetTimeout: Timeout not supported for tech %d", tech);
1576 jint tech) {
1579 switch (tech) {
1611 ALOGW("doGetTimeout: Timeout not supported for tech %d", tech);
1541 com_android_nfc_NfcManager_doSetTimeout( JNIEnv *e, jobject o, jint tech, jint timeout) argument
1575 com_android_nfc_NfcManager_doGetTimeout( JNIEnv *e, jobject o, jint tech) argument
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java79 void removeTechnology(int tech); // TODO remove this one argument
H A DRegisteredComponentCache.java101 for (String tech : techs) {
102 out.append(tech);
211 if (eventType == XmlPullParser.START_TAG && "tech".equals(tagName)) {
213 } else if (eventType == XmlPullParser.END_TAG && "tech-list".equals(tagName)) {
H A DNfcDispatcher.java41 import android.nfc.tech.Ndef;
378 // Standard tech dispatch path
440 /** Returns true if the tech list filter matches the techs on the tag */
444 for (String tech : filterTechs) {
445 if (Arrays.binarySearch(tagTechs, tech) < 0) {
H A DNfcService.java54 import android.nfc.tech.Ndef;
55 import android.nfc.tech.TagTechnology;
860 // Validate the tech lists
1225 public int setTimeout(int tech, int timeout) throws RemoteException { argument
1227 boolean success = mDeviceHost.setTimeout(tech, timeout);
1236 public int getTimeout(int tech) throws RemoteException { argument
1239 return mDeviceHost.getTimeout(tech);
1255 public int getMaxTransceiveLength(int tech) throws RemoteException { argument
1256 return mDeviceHost.getMaxTransceiveLength(tech);
/packages/apps/Nfc/nci/jni/
H A DRouteDataSet.cpp549 RouteDataForTechnology* tech = (RouteDataForTechnology*) routeData; local
550 ALOGD ("%s: ee h=0x%X; technology=0x%X", fn, tech->mNfaEeHandle, tech->mTechnology);
H A DNativeNfcManager.cpp768 ALOGD ("%s: tag polling tech mask=0x%X", __FUNCTION__, nat->tech_mask);
1448 static bool nfcManager_doSetTimeout(JNIEnv *e, jobject o, jint tech, jint timeout) argument
1469 ** tech: Not used.
1474 static jint nfcManager_doGetTimeout(JNIEnv *e, jobject o, jint tech) argument

Completed in 106 milliseconds