HomeSort by relevance Sort by last modified time
    Searched defs:techList (Results 1 - 3 of 3) 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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
TagVerifierActivity.java 192 String[] techList = tag.getTechList();
194 for (String tech : techList) {

Completed in 210 milliseconds