Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/nfc/
H A DTag.java131 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() argument
161 final int size = techList.length; in generateTechStringList()
164 switch (techList[i]) { in generateTechStringList()
373 String[] techList = getTechList(); in toString() local
374 int length = techList.length; in toString()
376 sb.append(techList[i]); in toString()
433 int[] techList = new int[in.readInt()];
[all …]
H A DTechListParcel.java45 String[] techList = mTechLists[i]; in writeToParcel() local
46 dest.writeStringArray(techList); in writeToParcel()
H A DINfcAdapter.aidl68 void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, in int[] techList); in addNfcUnlockHandler() argument
/aosp12/packages/apps/Nfc/nci/jni/
H A DNfcTag.cpp582 ScopedLocalRef<jintArray> techList(e, e->NewIntArray(mNumTechList)); in fillNativeNfcTagMembers1() local
587 ScopedIntArrayRW technologies(e, techList.get()); in fillNativeNfcTagMembers1()
602 e->SetObjectField(tag, f, techList.get()); in fillNativeNfcTagMembers1()
/aosp12/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java1515 public void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, int[] techList) { in addNfcUnlockHandler() argument
1518 int lockscreenPollMask = computeLockscreenPollMask(techList); in addNfcUnlockHandler()
1546 private int computeLockscreenPollMask(int[] techList) { in computeLockscreenPollMask() argument
1558 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()