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

  /frameworks/base/core/java/android/nfc/
TechListParcel.java 45 String[] techList = mTechLists[i];
46 dest.writeStringArray(techList);
Tag.java 126 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle,
128 if (techList == null) {
132 mTechList = Arrays.copyOf(techList, techList.length);
133 mTechStringList = generateTechStringList(techList);
135 mTechExtras = Arrays.copyOf(techListExtras, techList.length);
148 * @param techList must not be null
152 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) {
154 return new Tag(id, techList, techListExtras, 0, null);
157 private String[] generateTechStringList(int[] techList) {
    [all...]
INfcAdapter.aidl 61 void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, in int[] techList);
  /packages/apps/Nfc/nxp/jni/
com_android_nfc.cpp 380 int addTechIfNeeded(int *techList, int* handleList, int* typeList, int listSize,
384 if (techList[i] == techToAdd) {
390 techList[listSize] = techToAdd;
407 ScopedLocalRef<jintArray>* techList,
499 if (techList != NULL) {
500 techList->reset(e->NewIntArray(index));
501 e->SetIntArrayRegion(techList->get(), 0, index, technologies);
com_android_nfc.h 246 ScopedLocalRef<jintArray>* techList,
com_android_nfc_NativeNfcTag.cpp 307 ScopedLocalRef<jintArray> techList(e, (jintArray) e->GetObjectField(tag, techListField));
308 ScopedIntArrayRO techIds(e, techList.get());
388 ScopedLocalRef<jintArray> techList(e, (jintArray) e->GetObjectField(tag, techListField));
389 ScopedIntArrayRO techIds(e, techList.get());
    [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) {
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]
  /packages/apps/Nfc/nci/jni/
NfcTag.cpp 616 ScopedLocalRef<jintArray> techList(e, e->NewIntArray(mNumTechList));
621 ScopedIntArrayRW technologies(e, techList.get());
636 e->SetObjectField(tag, f, techList.get());
    [all...]

Completed in 1736 milliseconds