/frameworks/base/core/java/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;
|
NfcB.java | 17 package android.nfc.tech;
|
NfcV.java | 17 package android.nfc.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;
|
NdefFormatable.java | 17 package android.nfc.tech;
|
Ndef.java | 17 package android.nfc.tech; 168 throw new NullPointerException("NDEF tech extras are null.");
|
MifareClassic.java | 17 package android.nfc.tech;
|
/frameworks/base/core/java/android/nfc/ |
Tag.java | 20 import android.nfc.tech.IsoDep; 21 import android.nfc.tech.MifareClassic; 22 import android.nfc.tech.MifareUltralight; 23 import android.nfc.tech.Ndef; 24 import android.nfc.tech.NdefFormatable; 25 import android.nfc.tech.NfcA; 26 import android.nfc.tech.NfcB; 27 import android.nfc.tech.NfcF; 28 import android.nfc.tech.NfcV; 29 import android.nfc.tech.TagTechnology [all...] |
NfcAdapter.java | 29 import android.nfc.tech.MifareClassic; 30 import android.nfc.tech.Ndef; 31 import android.nfc.tech.NfcA; 32 import android.nfc.tech.NfcF; 70 * for this action and specify the desired tech types in a 85 * <p>The meta-data XML file should contain one or more <code>tech-list</code> entries 86 * each consisting or one or more <code>tech</code> entries. The <code>tech</code> entries refer 87 * to the qualified class name implementing the technology, for example "android.nfc.tech.NfcA". 90 * <code>tech-list</code> sets is a subset of {@link Tag#getTechList() Tag.getTechList()}. Eac [all...] |
/packages/apps/Nfc/src/com/android/nfc/nxp/ |
NativeNfcManager.java | 28 import android.nfc.tech.Ndef; 29 import android.nfc.tech.TagTechnology; 203 private native boolean doSetTimeout(int tech, int timeout); 205 public boolean setTimeout(int tech, int timeout) { 206 return doSetTimeout(tech, timeout); 209 private native int doGetTimeout(int tech); 211 public int getTimeout(int tech) { 212 return doGetTimeout(tech);
|
NativeNfcTag.java | 23 import android.nfc.tech.IsoDep; 24 import android.nfc.tech.MifareUltralight; 25 import android.nfc.tech.Ndef; 26 import android.nfc.tech.NfcA; 27 import android.nfc.tech.NfcB; 28 import android.nfc.tech.NfcF; 29 import android.nfc.tech.NfcV; 30 import android.nfc.tech.TagTechnology; 156 // Connect to a tech with a different handle 431 private void addTechnology(int tech, int handle, int libnfctype) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/nfc/ |
ForegroundDispatch.java | 27 import android.nfc.tech.NfcF; 71 // Setup a tech list for all NfcF tags
|
/packages/apps/Nfc/src/com/android/nfc/ |
DeviceHost.java | 69 void removeTechnology(int tech); // TODO remove this one
|
RegisteredComponentCache.java | 95 for (String tech : techs) { 96 out.append(tech); 196 if (eventType == XmlPullParser.START_TAG && "tech".equals(tagName)) { 198 } else if (eventType == XmlPullParser.END_TAG && "tech-list".equals(tagName)) {
|
NfcService.java | 53 import android.nfc.tech.Ndef; 54 import android.nfc.tech.TagTechnology; 668 // Validate the tech lists [all...] |
NfcDispatcher.java | 207 // Standard tech dispatch path 344 /** Returns true if the tech list filter matches the techs on the tag */ 348 for (String tech : filterTechs) { 349 if (Arrays.binarySearch(tagTechs, tech) < 0) {
|
/packages/apps/Nfc/jni/ |
com_android_nfc_NativeNfcTag.cpp | 313 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, actBytes) [all...] |
com_android_nfc_NativeNfcSecureElement.cpp | 164 TRACE("Discovered secure element: tech=%d", SecureElementTech); 167 LOGE("Discovered secure element, but could not resolve tech"); 172 // so make sure to delete the local refernce to the tech list. 600 int tech = SecureElementTech; local 614 TRACE("Secure Element tech: %d\n", tech); 620 if(tech == TARGET_TYPE_MIFARE_CLASSIC || tech == TARGET_TYPE_MIFARE_UL) 626 else if(tech == TARGET_TYPE_ISO14443_4)
|
/external/qemu/telephony/ |
android_modem.h | 105 extern AModemTech android_parse_modem_tech( const char* tech );
|
android_modem.c | 123 android_parse_modem_tech( const char * tech ) 125 const struct { const char* name; AModemTech tech; } techs[] = { member in struct:__anon10055 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...] |
/docs/source.android.com/src/assets/ |
main.css | 105 .tech #tech-link a,
|