Home | History | Annotate | Download | only in nfc

Lines Matching defs:techList

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) {
158 final int size = techList.length;
161 switch (techList[i]) {
193 throw new IllegalArgumentException("Unknown tech type " + techList[i]);
368 String[] techList = getTechList();
369 int length = techList.length;
371 sb.append(techList[i]);
428 int[] techList = new int[in.readInt()];
429 in.readIntArray(techList);
440 return new Tag(id, techList, techExtras, serviceHandle, tagService);