Home
last modified time | relevance | path

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

/packages/apps/Nfc/nci/jni/
DNativeNfcTag.cpp1026 jint ndefType = NDEF_UNKNOWN_TYPE; in nativeNfcTag_doGetNdefType() local
1031 ndefType = NDEF_TYPE1_TAG; in nativeNfcTag_doGetNdefType()
1033 ndefType = NDEF_TYPE2_TAG; in nativeNfcTag_doGetNdefType()
1035 ndefType = NDEF_TYPE3_TAG; in nativeNfcTag_doGetNdefType()
1037 ndefType = NDEF_TYPE4_TAG; in nativeNfcTag_doGetNdefType()
1039 ndefType = NDEF_MIFARE_CLASSIC_TAG; in nativeNfcTag_doGetNdefType()
1042 ndefType = NDEF_UNKNOWN_TYPE; in nativeNfcTag_doGetNdefType()
1044 LOG(DEBUG) << StringPrintf("%s: exit; ndef type=%d", __func__, ndefType); in nativeNfcTag_doGetNdefType()
1045 return ndefType; in nativeNfcTag_doGetNdefType()
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
DNativeNfcManager.java285 public boolean canMakeReadOnly(int ndefType) { in canMakeReadOnly() argument
286 return (ndefType == Ndef.TYPE_1 || ndefType == Ndef.TYPE_2); in canMakeReadOnly()
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java3119 public boolean canMakeReadOnly(int ndefType) throws RemoteException { in canMakeReadOnly() argument
3120 return mDeviceHost.canMakeReadOnly(ndefType); in canMakeReadOnly()