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

/packages/apps/Nfc/nci/jni/
H A DRouteDataSet.cpp533 RouteDataForTechnology* tech = (RouteDataForTechnology*) routeData; local
534 ALOGV("%s: ee h=0x%X; technology=0x%X", fn, tech->mNfaEeHandle, tech->mTechnology);
555 RouteDataForTechnology* tech = (RouteDataForTechnology*) routeData; local
556 ALOGV("%s: ee h=0x%X; technology=0x%X", fn, tech->mNfaEeHandle, tech->mTechnology);
H A DNativeNfcManager.cpp1005 ALOGV("%s: tag polling tech mask=0x%X", __func__, nat->tech_mask);
1622 ** tech: technology ID.
1628 static bool nfcManager_doSetTimeout(JNIEnv*, jobject, jint tech, jint timeout) argument
1635 ALOGV("%s: tech=%d, timeout=%d", __func__, tech, timeout);
1636 NfcTag::getInstance().setTransceiveTimeout (tech, timeout);
1648 ** tech: technology ID.
1653 static jint nfcManager_doGetTimeout(JNIEnv*, jobject, jint tech) argument
1655 int timeout = NfcTag::getInstance().getTransceiveTimeout (tech);
1656 ALOGV("%s: tech
[all...]
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java21 import android.nfc.tech.Ndef;
22 import android.nfc.tech.TagTechnology;
273 private native boolean doSetTimeout(int tech, int timeout); argument
275 public boolean setTimeout(int tech, int timeout) { argument
276 return doSetTimeout(tech, timeout);
279 private native int doGetTimeout(int tech); argument
281 public int getTimeout(int tech) { argument
282 return doGetTimeout(tech);
H A DNativeNfcTag.java25 import android.nfc.tech.IsoDep;
26 import android.nfc.tech.MifareClassic;
27 import android.nfc.tech.MifareUltralight;
28 import android.nfc.tech.Ndef;
29 import android.nfc.tech.NfcA;
30 import android.nfc.tech.NfcB;
31 import android.nfc.tech.NfcF;
32 import android.nfc.tech.NfcV;
33 import android.nfc.tech.NfcBarcode;
34 import android.nfc.tech
463 addTechnology(int tech, int handle, int libnfctype) argument
481 removeTechnology(int tech) argument
560 getTechIndex(int tech) argument
571 hasTech(int tech) argument
582 hasTechOnHandle(int tech, int handle) argument
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java63 void removeTechnology(int tech); // TODO remove this one argument
H A DNfcService.java56 import android.nfc.tech.Ndef;
57 import android.nfc.tech.TagTechnology;
930 // Validate the tech lists
1478 public int setTimeout(int tech, int timeout) throws RemoteException { argument
1480 boolean success = mDeviceHost.setTimeout(tech, timeout);
1489 public int getTimeout(int tech) throws RemoteException { argument
1492 return mDeviceHost.getTimeout(tech);
1508 public int getMaxTransceiveLength(int tech) throws RemoteException { argument
1509 return mDeviceHost.getMaxTransceiveLength(tech);

Completed in 149 milliseconds