Home
last modified time | relevance | path

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

/packages/apps/Nfc/nxp/jni/
Dcom_android_nfc.cpp380 int addTechIfNeeded(int *techList, int* handleList, int* typeList, int listSize, in addTechIfNeeded() argument
384 if (techList[i] == techToAdd) { in addTechIfNeeded()
390 techList[listSize] = techToAdd; in addTechIfNeeded()
407 ScopedLocalRef<jintArray>* techList, in nfc_jni_get_technology_tree() argument
499 if (techList != NULL) { in nfc_jni_get_technology_tree()
500 techList->reset(e->NewIntArray(index)); in nfc_jni_get_technology_tree()
501 e->SetIntArrayRegion(techList->get(), 0, index, technologies); in nfc_jni_get_technology_tree()
Dcom_android_nfc_NativeNfcTag.cpp307 ScopedLocalRef<jintArray> techList(e, (jintArray) e->GetObjectField(tag, techListField)); in set_target_pollBytes() local
308 ScopedIntArrayRO techIds(e, techList.get()); in set_target_pollBytes()
388 ScopedLocalRef<jintArray> techList(e, (jintArray) e->GetObjectField(tag, techListField)); in set_target_activationBytes() local
389 ScopedIntArrayRO techIds(e, techList.get()); in set_target_activationBytes()
Dcom_android_nfc.h246 ScopedLocalRef<jintArray>* techList,
Dcom_android_nfc_NativeNfcManager.cpp1031 ScopedLocalRef<jintArray> techList(e, NULL); in nfc_jni_Discovery_notification_callback() local
1036 &techList, &handleList, &typeList); in nfc_jni_Discovery_notification_callback()
1040 e->SetObjectField(tag.get(), f, techList.get()); in nfc_jni_Discovery_notification_callback()
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java1008 public void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, int[] techList) { in addNfcUnlockHandler() argument
1011 int lockscreenPollMask = computeLockscreenPollMask(techList); in addNfcUnlockHandler()
1028 private int computeLockscreenPollMask(int[] techList) { in computeLockscreenPollMask() argument
1040 for (int i = 0; i < techList.length; i++) { in computeLockscreenPollMask()
1041 if (techCodeToMask.containsKey(techList[i])) { in computeLockscreenPollMask()
1042 mask |= techCodeToMask.get(techList[i]).intValue(); in computeLockscreenPollMask()
/packages/apps/Nfc/nci/jni/
DNfcTag.cpp641 ScopedLocalRef<jintArray> techList(e, e->NewIntArray(mNumTechList)); in fillNativeNfcTagMembers1() local
646 ScopedIntArrayRW technologies(e, techList.get()); in fillNativeNfcTagMembers1()
661 e->SetObjectField(tag, f, techList.get()); in fillNativeNfcTagMembers1()