Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/nfc/
DTag.java128 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle, in Tag() argument
130 if (techList == null) { in Tag()
134 mTechList = Arrays.copyOf(techList, techList.length); in Tag()
135 mTechStringList = generateTechStringList(techList); in Tag()
137 mTechExtras = Arrays.copyOf(techListExtras, techList.length); in Tag()
154 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) { in createMockTag() argument
156 return new Tag(id, techList, techListExtras, 0, null); in createMockTag()
159 private String[] generateTechStringList(int[] techList) { in generateTechStringList() argument
160 final int size = techList.length; in generateTechStringList()
163 switch (techList[i]) { in generateTechStringList()
[all …]
DTechListParcel.java45 String[] techList = mTechLists[i]; in writeToParcel() local
46 dest.writeStringArray(techList); in writeToParcel()
DINfcAdapter.aidl67 void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, in int[] techList); in addNfcUnlockHandler() argument