HomeSort by relevance Sort by last modified time
    Searched refs:targetLost (Results 1 - 3 of 3) sorted by null

  /packages/apps/Nfc/nci/jni/
NativeNfcTag.cpp 816 jint *targetLost = NULL;
822 targetLost = e->GetIntArrayElements (statusTargetLost, 0);
823 if (targetLost)
824 *targetLost = 1; //causes NFC service to throw TagLostException
825 e->ReleaseIntArrayElements (statusTargetLost, targetLost, 0);
840 targetLost = e->GetIntArrayElements (statusTargetLost, 0);
841 if (targetLost)
842 *targetLost = 0; //success, tag is still present
875 if (targetLost)
876 *targetLost = 1; //causes NFC service to throw TagLostExceptio
    [all...]
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcTag.cpp 718 jint *targetLost;
720 targetLost = e->GetIntArrayElements(statusTargetLost, 0);
721 if (targetLost != NULL) {
722 *targetLost = 0;
725 targetLost = NULL;
827 if ((targetLost != NULL) && (status == NFCSTATUS_TARGET_LOST)) {
828 *targetLost = 1;
843 if ((targetLost != NULL) && (cb_data.status == NFCSTATUS_TARGET_LOST)) {
844 *targetLost = 1;
884 if (targetLost != NULL)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]

Completed in 1623 milliseconds