Home
last modified time | relevance | path

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

/packages/apps/Nfc/nxp/jni/
Dcom_android_nfc_NativeNfcSecureElement.cpp155 jintArray techList; in com_android_nfc_jni_open_secure_element_notification_callback() local
156 nfc_jni_get_technology_tree(e, psRemoteDevList,uNofRemoteDev, &techList, NULL, NULL); in com_android_nfc_jni_open_secure_element_notification_callback()
159 if ((techList != NULL) && e->GetArrayLength(techList) > 0) { in com_android_nfc_jni_open_secure_element_notification_callback()
160 e->GetIntArrayRegion(techList, 0, 1, &SecureElementTech); in com_android_nfc_jni_open_secure_element_notification_callback()
173 e->DeleteLocalRef(techList); in com_android_nfc_jni_open_secure_element_notification_callback()
730 jintArray techList; in com_android_nfc_NativeNfcSecureElement_doGetTechList() local
735 techList = e->NewIntArray(1); in com_android_nfc_NativeNfcSecureElement_doGetTechList()
736 e->SetIntArrayRegion(techList, 0, 1, &SecureElementTech); in com_android_nfc_NativeNfcSecureElement_doGetTechList()
737 return techList; in com_android_nfc_NativeNfcSecureElement_doGetTechList()
Dcom_android_nfc.cpp430 int addTechIfNeeded(int *techList, int* handleList, int* typeList, int listSize, in addTechIfNeeded() argument
434 if (techList[i] == techToAdd) { in addTechIfNeeded()
440 techList[listSize] = techToAdd; in addTechIfNeeded()
457 uint8_t count, jintArray* techList, jintArray* handleList, in nfc_jni_get_technology_tree() argument
548 if (techList != NULL) { in nfc_jni_get_technology_tree()
549 *techList = e->NewIntArray(index); in nfc_jni_get_technology_tree()
550 e->SetIntArrayRegion(*techList, 0, index, technologies); in nfc_jni_get_technology_tree()
Dcom_android_nfc_NativeNfcTag.cpp305 jintArray techList = (jintArray) e->GetObjectField(tag, techListField); in set_target_pollBytes() local
306 jint *techId = e->GetIntArrayElements(techList, 0); in set_target_pollBytes()
307 int techListLength = e->GetArrayLength(techList); in set_target_pollBytes()
371 e->ReleaseIntArrayElements(techList, techId, 0); in set_target_pollBytes()
391 jintArray techList = (jintArray) e->GetObjectField(tag, techListField); in set_target_activationBytes() local
392 int techListLength = e->GetArrayLength(techList); in set_target_activationBytes()
393 jint *techId = e->GetIntArrayElements(techList, 0); in set_target_activationBytes()
444 e->ReleaseIntArrayElements(techList, techId, 0); in set_target_activationBytes()
Dcom_android_nfc.h235 uint8_t count, jintArray* techList, jintArray* handleList,
Dcom_android_nfc_NativeNfcManager.cpp1039 jintArray techList; in nfc_jni_Discovery_notification_callback() local
1044 &techList, &handleList, &typeList); in nfc_jni_Discovery_notification_callback()
1048 e->SetObjectField(tag, f, techList); in nfc_jni_Discovery_notification_callback()
/packages/apps/Nfc/nci/jni/
DNativeSecureElement.cpp203 jintArray techList = NULL; in nativeNfcSecureElement_doGetTechList() local
205 SecureElement::getInstance().getTechnologyList (handle, techList); in nativeNfcSecureElement_doGetTechList()
208 return techList; in nativeNfcSecureElement_doGetTechList()
DSecureElement.h224 bool getTechnologyList (tNFA_HANDLE eeHandle, jintArray& techList);
DNfcTag.cpp574 jintArray techList = e->NewIntArray (mNumTechList); in fillNativeNfcTagMembers1() local
578 jint* technologies = e->GetIntArrayElements (techList, NULL); in fillNativeNfcTagMembers1()
589 e->ReleaseIntArrayElements (techList, technologies, 0); in fillNativeNfcTagMembers1()
594 e->SetObjectField (tag, f, techList); in fillNativeNfcTagMembers1()
DSecureElement.cpp1167 bool SecureElement::getTechnologyList (tNFA_HANDLE eeHandle, jintArray& techList) in getTechnologyList() argument