HomeSort by relevance Sort by last modified time
    Searched defs:techList (Results 1 - 5 of 5) 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 210 jintArray techList = NULL;
212 SecureElement::getInstance().getTechnologyList (handle, techList);
215 return techList;
  /packages/apps/Nfc/nxp/jni/
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;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
TagVerifierActivity.java 192 String[] techList = tag.getTechList();
194 for (String tech : techList) {

Completed in 352 milliseconds