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

  /frameworks/base/core/java/android/nfc/
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...]
TechListParcel.java 45 String[] techList = mTechLists[i];
46 dest.writeStringArray(techList);
  /packages/apps/Nfc/nxp/jni/
com_android_nfc.cpp 382 int addTechIfNeeded(int *techList, int* handleList, int* typeList, int listSize,
386 if (techList[i] == techToAdd) {
392 techList[listSize] = techToAdd;
409 ScopedLocalRef<jintArray>* techList,
501 if (techList != NULL) {
502 techList->reset(e->NewIntArray(index));
503 e->SetIntArrayRegion(techList->get(), 0, index, technologies);
com_android_nfc_NativeNfcSecureElement.cpp 155 ScopedLocalRef<jintArray> techList(e, NULL);
156 nfc_jni_get_technology_tree(e, psRemoteDevList,uNofRemoteDev, &techList, NULL, NULL);
159 if ((techList.get() != NULL) && e->GetArrayLength(techList.get()) > 0) {
160 e->GetIntArrayRegion(techList.get(), 0, 1, &SecureElementTech);
729 jintArray techList;
com_android_nfc.h 246 ScopedLocalRef<jintArray>* techList,
com_android_nfc_NativeNfcTag.cpp 306 ScopedLocalRef<jintArray> techList(e, (jintArray) e->GetObjectField(tag, techListField));
307 ScopedIntArrayRO techIds(e, techList.get());
387 ScopedLocalRef<jintArray> techList(e, (jintArray) e->GetObjectField(tag, techListField));
388 ScopedIntArrayRO techIds(e, techList.get());
    [all...]
com_android_nfc_NativeNfcManager.cpp     [all...]
  /packages/apps/Nfc/nci/jni/
SecureElement.h 232 ** techList: List to receive the technologies.
237 bool getTechnologyList (tNFA_HANDLE eeHandle, jintArray& techList);
NfcTag.cpp 592 ScopedLocalRef<jintArray> techList(e, e->NewIntArray(mNumTechList));
597 ScopedIntArrayRW technologies(e, techList.get());
612 e->SetObjectField(tag, f, techList.get());
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
TagVerifierActivity.java 192 String[] techList = tag.getTechList();
194 for (String tech : techList) {

Completed in 356 milliseconds