Searched refs:pollTech (Results 1 – 8 of 8) sorted by relevance
/packages/apps/Nfc/testutils/src/com/android/nfc/reader/ |
D | BaseReaderActivity.java | 45 public void setPollTech(int pollTech) { in setPollTech() argument 46 Log.d(TAG, "setting polltech to " + pollTech); in setPollTech() 47 mAdapter.setDiscoveryTechnology(this, pollTech, NfcAdapter.FLAG_LISTEN_KEEP); in setPollTech()
|
D | SimpleReaderActivity.java | 71 public void setPollTech(int pollTech) { in setPollTech() argument 72 Log.d(TAG, "setting polltech to " + pollTech); in setPollTech() 73 mAdapter.enableReaderMode(this, this, pollTech, null); in setPollTech()
|
D | NfcReaderDeviceSnippet.java | 418 public void setPollTech(Integer pollTech) { in setPollTech() argument 423 mActivity.setPollTech(pollTech); in setPollTech()
|
/packages/apps/Nfc/src/com/android/nfc/ |
D | NfcShellCommand.java | 113 int pollTech = Integer.parseInt(getNextArg()); in onCommand() local 116 new Binder(), pollTech, listenTech); in onCommand()
|
D | NfcService.java | 1324 int pollTech = -1; in enableInternal() local 1326 pollTech = getNfcPollTech(); in enableInternal() 1335 if (pollTech == -1 || pollTech == DEFAULT_POLL_TECH) in enableInternal() 1336 pollTech = (NfcAdapter.FLAG_READER_KEEP|NfcAdapter.FLAG_USE_ALL_TECH); in enableInternal() 1338 mDeviceHost.setDiscoveryTech(pollTech|NfcAdapter.FLAG_SET_DEFAULT_TECH, in enableInternal() 2028 public void updateDiscoveryTechnology(IBinder binder, int pollTech, int listenTech) in updateDiscoveryTechnology() argument 2042 pollTech &= ~NfcAdapter.FLAG_SET_DEFAULT_TECH; in updateDiscoveryTechnology() 2050 } else if (((pollTech & NfcAdapter.FLAG_SET_DEFAULT_TECH) != 0 in updateDiscoveryTechnology() 2053 if ((pollTech & NfcAdapter.FLAG_SET_DEFAULT_TECH) != 0) { in updateDiscoveryTechnology() 2054 if ((pollTech & NfcAdapter.FLAG_READER_KEEP) == 0 && in updateDiscoveryTechnology() [all …]
|
D | DeviceHost.java | 235 void setDiscoveryTech(int pollTech, int listenTech); in setDiscoveryTech() argument
|
/packages/apps/Nfc/nci/jni/ |
D | NativeNfcManager.cpp | 2033 static void nfcManager_setDiscoveryTech(JNIEnv* e, jobject o, jint pollTech, in nfcManager_setDiscoveryTech() argument 2040 pollTech, listenTech); in nfcManager_setDiscoveryTech() 2042 if (pollTech < 0) isRevertPoll = true; in nfcManager_setDiscoveryTech() 2044 if (pollTech & FLAG_SET_DEFAULT_TECH || listenTech & FLAG_SET_DEFAULT_TECH) in nfcManager_setDiscoveryTech() 2054 nfaStat = NFA_ChangeDiscoveryTech(pollTech, listenTech, isRevertPoll, in nfcManager_setDiscoveryTech()
|
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
D | NativeNfcManager.java | 493 public native void setDiscoveryTech(int pollTech, int listenTech); in setDiscoveryTech() argument
|