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 823 jint *targetLost = NULL;
829 targetLost = e->GetIntArrayElements (statusTargetLost, 0);
830 if (targetLost)
831 *targetLost = 1; //causes NFC service to throw TagLostException
832 e->ReleaseIntArrayElements (statusTargetLost, targetLost, 0);
847 targetLost = e->GetIntArrayElements (statusTargetLost, 0);
848 if (targetLost)
849 *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 719 jint *targetLost;
721 targetLost = e->GetIntArrayElements(statusTargetLost, 0);
722 if (targetLost != NULL) {
723 *targetLost = 0;
726 targetLost = NULL;
828 if ((targetLost != NULL) && (status == NFCSTATUS_TARGET_LOST)) {
829 *targetLost = 1;
844 if ((targetLost != NULL) && (cb_data.status == NFCSTATUS_TARGET_LOST)) {
845 *targetLost = 1;
885 if (targetLost != NULL)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]

Completed in 199 milliseconds