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.cpp973 ALOGV("%s: tag polling tech mask=0x%X", __func__, nat->tech_mask);
1580 ** tech: technology ID.
1586 static bool nfcManager_doSetTimeout(JNIEnv*, jobject, jint tech, jint timeout) argument
1593 ALOGV("%s: tech=%d, timeout=%d", __func__, tech, timeout);
1594 NfcTag::getInstance().setTransceiveTimeout (tech, timeout);
1606 ** tech: technology ID.
1611 static jint nfcManager_doGetTimeout(JNIEnv*, jobject, jint tech) argument
1613 int timeout = NfcTag::getInstance().getTransceiveTimeout (tech);
1614 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;
251 private native boolean doSetTimeout(int tech, int timeout); argument
253 public boolean setTimeout(int tech, int timeout) { argument
254 return doSetTimeout(tech, timeout);
257 private native int doGetTimeout(int tech); argument
259 public int getTimeout(int tech) { argument
260 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.java55 import android.nfc.tech.Ndef;
56 import android.nfc.tech.TagTechnology;
881 // Validate the tech lists
1411 public int setTimeout(int tech, int timeout) throws RemoteException { argument
1413 boolean success = mDeviceHost.setTimeout(tech, timeout);
1422 public int getTimeout(int tech) throws RemoteException { argument
1425 return mDeviceHost.getTimeout(tech);
1441 public int getMaxTransceiveLength(int tech) throws RemoteException { argument
1442 return mDeviceHost.getMaxTransceiveLength(tech);

Completed in 177 milliseconds