Home
last modified time | relevance | path

Searched refs:techList (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/nfc/
DTag.java126 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle, in Tag() argument
128 if (techList == null) { in Tag()
132 mTechList = Arrays.copyOf(techList, techList.length); in Tag()
133 mTechStringList = generateTechStringList(techList); in Tag()
135 mTechExtras = Arrays.copyOf(techListExtras, techList.length); in Tag()
152 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) { in createMockTag() argument
154 return new Tag(id, techList, techListExtras, 0, null); in createMockTag()
157 private String[] generateTechStringList(int[] techList) { in generateTechStringList() argument
158 final int size = techList.length; in generateTechStringList()
161 switch (techList[i]) { in generateTechStringList()
[all …]
DTechListParcel.java45 String[] techList = mTechLists[i]; in writeToParcel() local
46 dest.writeStringArray(techList); in writeToParcel()
DINfcAdapter.aidl66 void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, in int[] techList); in addNfcUnlockHandler() argument