HomeSort by relevance Sort by last modified time
    Searched defs:techList (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/nfc/
TechListParcel.java 45 String[] techList = mTechLists[i];
46 dest.writeStringArray(techList);
Tag.java 124 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle,
126 if (techList == null) {
130 mTechList = Arrays.copyOf(techList, techList.length);
131 mTechStringList = generateTechStringList(techList);
133 mTechExtras = Arrays.copyOf(techListExtras, techList.length);
146 * @param techList must not be null
150 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) {
152 return new Tag(id, techList, techListExtras, 0, null);
155 private String[] generateTechStringList(int[] techList) {
    [all...]
  /packages/apps/Nfc/jni/
com_android_nfc_NativeNfcSecureElement.cpp 155 jintArray techList;
156 nfc_jni_get_technology_tree(e, psRemoteDevList,uNofRemoteDev, &techList, NULL, NULL);
159 if ((techList != NULL) && e->GetArrayLength(techList) > 0) {
160 e->GetIntArrayRegion(techList, 0, 1, &SecureElementTech);
173 e->DeleteLocalRef(techList);
730 jintArray techList;
735 techList = e->NewIntArray(1);
736 e->SetIntArrayRegion(techList, 0, 1, &SecureElementTech);
737 return techList;
    [all...]
com_android_nfc_NativeNfcTag.cpp 305 jintArray techList = (jintArray) e->GetObjectField(tag, techListField);
306 jint *techId = e->GetIntArrayElements(techList, 0);
307 int techListLength = e->GetArrayLength(techList);
371 e->ReleaseIntArrayElements(techList, techId, 0);
391 jintArray techList = (jintArray) e->GetObjectField(tag, techListField);
392 int techListLength = e->GetArrayLength(techList);
393 jint *techId = e->GetIntArrayElements(techList, 0);
444 e->ReleaseIntArrayElements(techList, techId, 0);
    [all...]
com_android_nfc_NativeNfcManager.cpp     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
TagVerifierActivity.java 192 String[] techList = tag.getTechList();
194 for (String tech : techList) {

Completed in 112 milliseconds