Searched defs:techList (Results 1 - 1 of 1) sorted by path

/frameworks/base/core/java/android/nfc/
H A DTag.java122 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle, argument
124 if (techList == null) {
128 mTechList = Arrays.copyOf(techList, techList.length);
129 mTechStringList = generateTechStringList(techList);
131 mTechExtras = Arrays.copyOf(techListExtras, techList.length);
144 * @param techList must not be null
148 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) { argument
150 return new Tag(id, techList, techListExtras, 0, null);
153 private String[] generateTechStringList(int[] techList) { argument
[all...]

Completed in 58 milliseconds