OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:targetLost
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Nfc/nci/jni/
NativeNfcTag.cpp
842
jint *
targetLost
= NULL;
848
targetLost
= e->GetIntArrayElements (statusTargetLost, 0);
849
if (
targetLost
)
850
*
targetLost
= 1; //causes NFC service to throw TagLostException
851
e->ReleaseIntArrayElements (statusTargetLost,
targetLost
, 0);
866
targetLost
= e->GetIntArrayElements (statusTargetLost, 0);
867
if (
targetLost
)
868
*
targetLost
= 0; //success, tag is still present
904
if (
targetLost
)
905
*
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 129 milliseconds