Searched refs:techList (Results 1 – 5 of 5) sorted by relevance
131 if (techList == null) { in Tag()135 mTechList = Arrays.copyOf(techList, techList.length); in Tag()136 mTechStringList = generateTechStringList(techList); in Tag()160 private String[] generateTechStringList(int[] techList) { in generateTechStringList() argument161 final int size = techList.length; in generateTechStringList()164 switch (techList[i]) { in generateTechStringList()373 String[] techList = getTechList(); in toString() local374 int length = techList.length; in toString()376 sb.append(techList[i]); in toString()433 int[] techList = new int[in.readInt()];[all …]
45 String[] techList = mTechLists[i]; in writeToParcel() local46 dest.writeStringArray(techList); in writeToParcel()
68 void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, in int[] techList); in addNfcUnlockHandler() argument
582 ScopedLocalRef<jintArray> techList(e, e->NewIntArray(mNumTechList)); in fillNativeNfcTagMembers1() local587 ScopedIntArrayRW technologies(e, techList.get()); in fillNativeNfcTagMembers1()602 e->SetObjectField(tag, f, techList.get()); in fillNativeNfcTagMembers1()
1515 public void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, int[] techList) { in addNfcUnlockHandler() argument1518 int lockscreenPollMask = computeLockscreenPollMask(techList); in addNfcUnlockHandler()1546 private int computeLockscreenPollMask(int[] techList) { in computeLockscreenPollMask() argument1558 for (int i = 0; i < techList.length; i++) { in computeLockscreenPollMask()1559 if (techCodeToMask.containsKey(techList[i])) { in computeLockscreenPollMask()1560 mask |= techCodeToMask.get(techList[i]).intValue(); in computeLockscreenPollMask()