Searched refs:techList (Results 1 – 9 of 9) sorted by relevance
/packages/apps/Nfc/nxp/jni/ |
D | com_android_nfc_NativeNfcSecureElement.cpp | 155 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()
|
D | com_android_nfc.cpp | 430 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()
|
D | com_android_nfc_NativeNfcTag.cpp | 305 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()
|
D | com_android_nfc.h | 235 uint8_t count, jintArray* techList, jintArray* handleList,
|
D | com_android_nfc_NativeNfcManager.cpp | 1039 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/ |
D | NativeSecureElement.cpp | 203 jintArray techList = NULL; in nativeNfcSecureElement_doGetTechList() local 205 SecureElement::getInstance().getTechnologyList (handle, techList); in nativeNfcSecureElement_doGetTechList() 208 return techList; in nativeNfcSecureElement_doGetTechList()
|
D | SecureElement.h | 224 bool getTechnologyList (tNFA_HANDLE eeHandle, jintArray& techList);
|
D | NfcTag.cpp | 574 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()
|
D | SecureElement.cpp | 1167 bool SecureElement::getTechnologyList (tNFA_HANDLE eeHandle, jintArray& techList) in getTechnologyList() argument
|