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

/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/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/src/com/android/nfc/
H A DDeviceHost.java63 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.java46 import android.nfc.tech.Ndef;
47 import android.nfc.tech.NfcBarcode;
352 * Checks for the presence of a URL stored in a tag with tech NfcBarcode.
373 * The final two bytes of a tag with tech NfcBarcode are always reserved for CRC data,
561 // Standard tech dispatch path
656 /** Returns true if the tech list filter matches the techs on the tag */
660 for (String tech : filterTechs) {
661 if (Arrays.binarySearch(tagTechs, tech) < 0) {
H A DNfcWifiProtectedSetup.java25 import android.nfc.tech.Ndef;
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);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWriteWifiConfigToNfcDialog.java29 import android.nfc.tech.Ndef;
/packages/apps/Dialer/java/com/android/incallui/call/
H A DDialerCall.java1376 // Insert order here determines the priority of that video tech option
1401 for (VideoTech tech : videoTechs) {
1402 if (tech.isAvailable(context)) {
1404 savedTech = tech;

Completed in 201 milliseconds