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

  /frameworks/base/core/java/android/nfc/
TechListParcel.java 45 String[] techList = mTechLists[i];
46 dest.writeStringArray(techList);
Tag.java 125 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle,
127 if (techList == null) {
131 mTechList = Arrays.copyOf(techList, techList.length);
132 mTechStringList = generateTechStringList(techList);
134 mTechExtras = Arrays.copyOf(techListExtras, techList.length);
147 * @param techList must not be null
151 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) {
153 return new Tag(id, techList, techListExtras, 0, null);
156 private String[] generateTechStringList(int[] techList) {
    [all...]
  /packages/apps/Nfc/nci/jni/
NativeSecureElement.cpp 203 jintArray techList = NULL;
205 SecureElement::getInstance().getTechnologyList (handle, techList);
208 return techList;
NfcTag.cpp 574 jintArray techList = e->NewIntArray (mNumTechList);
578 jint* technologies = e->GetIntArrayElements (techList, NULL);
589 e->ReleaseIntArrayElements (techList, technologies, 0);
594 e->SetObjectField (tag, f, techList);
    [all...]
  /packages/apps/Nfc/nxp/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 432 milliseconds