HomeSort by relevance Sort by last modified time
    Searched full: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 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 67 void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, in int[] techList);
  /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 610 ScopedLocalRef<jintArray> techList(e, e->NewIntArray(mNumTechList));
615 ScopedIntArrayRW technologies(e, techList.get());
630 e->SetObjectField(tag, f, techList.get());
    [all...]

Completed in 1776 milliseconds