Home
last modified time | relevance | path

Searched refs:ndefType (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Nfc/nci/jni/
DNativeNfcTag.cpp946 jint ndefType = NDEF_UNKNOWN_TYPE; in nativeNfcTag_doGetNdefType() local
952 ndefType = NDEF_TYPE1_TAG; in nativeNfcTag_doGetNdefType()
955 ndefType = NDEF_TYPE2_TAG;; in nativeNfcTag_doGetNdefType()
958 ndefType = NDEF_TYPE3_TAG; in nativeNfcTag_doGetNdefType()
961 ndefType = NDEF_TYPE4_TAG; in nativeNfcTag_doGetNdefType()
964 ndefType = NDEF_UNKNOWN_TYPE; in nativeNfcTag_doGetNdefType()
967 ndefType = NDEF_UNKNOWN_TYPE; in nativeNfcTag_doGetNdefType()
970 ndefType = NDEF_UNKNOWN_TYPE; in nativeNfcTag_doGetNdefType()
973 ALOGD ("%s: exit; ndef type=%d", __FUNCTION__, ndefType); in nativeNfcTag_doGetNdefType()
974 return ndefType; in nativeNfcTag_doGetNdefType()
/packages/apps/Nfc/nxp/jni/
Dcom_android_nfc_NativeNfcTag.cpp898 jint ndefType = NDEF_UNKNOWN_TYPE; in com_android_nfc_NativeNfcTag_doGetNdefType() local
902 ndefType = NDEF_TYPE1_TAG; in com_android_nfc_NativeNfcTag_doGetNdefType()
905 ndefType = NDEF_TYPE2_TAG;; in com_android_nfc_NativeNfcTag_doGetNdefType()
908 ndefType = NDEF_TYPE3_TAG; in com_android_nfc_NativeNfcTag_doGetNdefType()
914 ndefType = NDEF_TYPE4_TAG; in com_android_nfc_NativeNfcTag_doGetNdefType()
918 ndefType = NDEF_TYPE2_TAG; in com_android_nfc_NativeNfcTag_doGetNdefType()
920 ndefType = NDEF_MIFARE_CLASSIC_TAG; in com_android_nfc_NativeNfcTag_doGetNdefType()
924 ndefType = NDEF_ICODE_SLI_TAG; in com_android_nfc_NativeNfcTag_doGetNdefType()
927 ndefType = NDEF_UNKNOWN_TYPE; in com_android_nfc_NativeNfcTag_doGetNdefType()
930 return ndefType; in com_android_nfc_NativeNfcTag_doGetNdefType()
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
DNativeNfcManager.java278 public boolean canMakeReadOnly(int ndefType) { in canMakeReadOnly() argument
279 return (ndefType == Ndef.TYPE_1 || ndefType == Ndef.TYPE_2 || in canMakeReadOnly()
280 ndefType == Ndef.TYPE_MIFARE_CLASSIC); in canMakeReadOnly()
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
DNativeNfcManager.java220 public boolean canMakeReadOnly(int ndefType) { in canMakeReadOnly() argument
221 return (ndefType == Ndef.TYPE_1 || ndefType == Ndef.TYPE_2); in canMakeReadOnly()
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java1360 public boolean canMakeReadOnly(int ndefType) throws RemoteException { in canMakeReadOnly() argument
1361 return mDeviceHost.canMakeReadOnly(ndefType); in canMakeReadOnly()