/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/ |
TagTester.java | 17 package com.android.cts.verifier.nfc.tech;
|
NfcUtils.java | 17 package com.android.cts.verifier.nfc.tech;
|
TagVerifier.java | 17 package com.android.cts.verifier.nfc.tech;
|
MifareUltralightTagTester.java | 17 package com.android.cts.verifier.nfc.tech; 20 import android.nfc.tech.MifareUltralight; 39 for (String tech : tag.getTechList()) { 40 if (tech.equals(MifareUltralight.class.getName())) {
|
NdefTagTester.java | 17 package com.android.cts.verifier.nfc.tech; 26 import android.nfc.tech.Ndef; 54 for (String tech : tag.getTechList()) { 55 if (tech.equals(Ndef.class.getName())) {
|
/frameworks/base/core/java/android/nfc/tech/ |
NfcB.java | 17 package android.nfc.tech;
|
NfcBarcode.java | 17 package android.nfc.tech; 69 throw new NullPointerException("NfcBarcode tech extras are null.");
|
NfcV.java | 17 package android.nfc.tech;
|
NdefFormatable.java | 17 package android.nfc.tech;
|
TagTechnology.java | 17 package android.nfc.tech;
|
BasicTagTechnology.java | 17 package android.nfc.tech; 38 BasicTagTechnology(Tag tag, int tech) throws RemoteException { 40 mSelectedTechnology = tech;
|
IsoDep.java | 17 package android.nfc.tech;
|
NfcA.java | 17 package android.nfc.tech;
|
NfcF.java | 17 package android.nfc.tech;
|
MifareUltralight.java | 17 package android.nfc.tech;
|
MifareClassic.java | 17 package android.nfc.tech;
|
Ndef.java | 17 package android.nfc.tech; 168 throw new NullPointerException("NDEF tech extras are null.");
|
/packages/apps/Nfc/nci/jni/ |
RouteDataSet.cpp | 206 else if (xmlStrcmp(node2->name, (const xmlChar*) "Tech")==0) 219 else if (xmlStrcmp(node2->name, (const xmlChar*) "Tech")==0) 536 RouteDataForTechnology* tech = (RouteDataForTechnology*) routeData; local 537 ALOGD ("%s: ee h=0x%X; technology=0x%X", fn, tech->mNfaEeHandle, tech->mTechnology); 558 RouteDataForTechnology* tech = (RouteDataForTechnology*) routeData; local 559 ALOGD ("%s: ee h=0x%X; technology=0x%X", fn, tech->mNfaEeHandle, tech->mTechnology);
|
/packages/apps/Nfc/nxp/jni/ |
com_android_nfc_NativeNfcSecureElement.cpp | 164 TRACE("Discovered secure element: tech=%d", SecureElementTech); 167 ALOGE("Discovered secure element, but could not resolve tech"); 618 int tech = SecureElementTech; local 632 TRACE("Secure Element tech: %d\n", tech); 638 if(tech == TARGET_TYPE_MIFARE_CLASSIC || tech == TARGET_TYPE_MIFARE_UL) 644 else if(tech == TARGET_TYPE_ISO14443_4)
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/ |
TagVerifierActivity.java | 21 import com.android.cts.verifier.nfc.tech.MifareUltralightTagTester; 22 import com.android.cts.verifier.nfc.tech.NdefTagTester; 23 import com.android.cts.verifier.nfc.tech.TagTester; 24 import com.android.cts.verifier.nfc.tech.TagVerifier; 25 import com.android.cts.verifier.nfc.tech.TagVerifier.Result; 36 import android.nfc.tech.MifareUltralight; 37 import android.nfc.tech.Ndef; 56 static final String EXTRA_TECH = "tech"; 115 String tech = getIntent().getStringExtra(EXTRA_TECH); local 116 if (tech != null) [all...] |
/external/libnfc-nci/src/nfc/int/ |
ce_int.h | 131 tNFC_RF_TECH tech; member in struct:__anon20895
|
/external/jmonkeyengine/engine/src/core/com/jme3/material/ |
Material.java | 839 Technique tech = techniques.get(name); local 840 if (tech == null) { 855 tech = new Technique(this, techDef); 856 techniques.put(name, tech); 861 if (tech == null) { [all...] |
/hardware/ril/reference-ril/ |
reference-ril.c | 92 // TECH returns the current technology in the format used by the modem. 94 #define TECH(mdminfo) ((mdminfo)->currentTech) 95 // TECH_BIT returns the bitmask equivalent of the current tech 98 #define TECH_SUPPORTED(mdminfo, tech) ((mdminfo)->supportedTechs & (tech)) 2264 int tech = techFromModemType(TECH(sMdmInfo)); local 2389 int tech = techFromModemType(TECH(sMdmInfo)); local 2875 int tech; local 3107 int tech, mask; local [all...] |
/external/qemu/telephony/ |
android_modem.c | 123 android_parse_modem_tech( const char * tech ) 125 const struct { const char* name; AModemTech tech; } techs[] = { member in struct:__anon25665 136 if (!strcmp(tech, techs[nn].name)) 137 return techs[nn].tech; 1017 * Tell whether the specified tech is valid for the preferred mask. 1019 * @tech: The AModemTech we try to validate 1024 static int matchPreferredMask( int32_t pmask, AModemTech tech ) 1029 if (pmask & (1 << (tech + i*8 ))) { [all...] |
/hardware/ril/include/telephony/ |
ril.h | 243 RIL_RadioTechnologyFamily tech; member in struct:__anon32043 251 /* Valid field if tech is RADIO_TECH_3GPP2. See RIL_REQUEST_CDMA_SEND_SMS */ 254 /* Valid field if tech is RADIO_TECH_3GPP. See RIL_REQUEST_SEND_SMS */ [all...] |