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 821 jint *targetLost = NULL;
827 targetLost = e->GetIntArrayElements (statusTargetLost, 0);
828 if (targetLost)
829 *targetLost = 1; //causes NFC service to throw TagLostException
830 e->ReleaseIntArrayElements (statusTargetLost, targetLost, 0);
845 targetLost = e->GetIntArrayElements (statusTargetLost, 0);
846 if (targetLost)
847 *targetLost = 0; //success, tag is still present
873 if (targetLost)
874 *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 90 milliseconds