Searched defs:technology (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Nfc/nci/jni/
H A DRoutingManager.cpp170 // Set technology routes to UICC if it's there
173 ALOGE("Failed to configure UICC technology routing.");
276 // Default routing for Nfc-A/Nfc-F technology if we don't have a SE
295 // Default routing for Nfc-A technology if we don't have a SE
311 // Default routing for Nfc-F technology if we don't have a SE
419 void RoutingManager::notifyActivated (uint8_t technology) argument
429 e->CallVoidMethod (mNativeData->manager, android::gCachedNfcManagerNotifyHostEmuActivated, (int)technology);
437 void RoutingManager::notifyDeactivated (uint8_t technology) argument
448 e->CallVoidMethod (mNativeData->manager, android::gCachedNfcManagerNotifyHostEmuDeactivated, (int)technology);
456 void RoutingManager::handleData (uint8_t technology, cons argument
[all...]
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
H A DCardEmulationManager.java109 public void onHostCardEmulationActivated(int technology) { argument
113 if (technology == NFC_HCE_APDU) {
116 } else if (technology == NFC_HCE_NFCF) {
123 public void onHostCardEmulationData(int technology, byte[] data) { argument
127 if (technology == NFC_HCE_APDU) {
129 } else if (technology == NFC_HCE_NFCF) {
134 public void onHostCardEmulationDeactivated(int technology) { argument
135 if (technology == NFC_HCE_APDU) {
138 } else if (technology == NFC_HCE_NFCF) {
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java292 public int getMaxTransceiveLength(int technology) { argument
293 switch (technology) {
396 private void notifyHostEmuActivated(int technology) { argument
397 mListener.onHostCardEmulationActivated(technology);
400 private void notifyHostEmuData(int technology, byte[] data) { argument
401 mListener.onHostCardEmulationData(technology, data);
404 private void notifyHostEmuDeactivated(int technology) { argument
405 mListener.onHostCardEmulationDeactivated(technology);
H A DNativeNfcTag.java58 // mConnectedTechIndex stores to which technology
61 // connected to a technology - technology changes
150 public synchronized int connectWithStatus(int technology) { argument
156 if (mTechList[i] == technology) {
162 // 2) We are connected to a technology which has
180 // 1) We are connected to a technology which has the same
184 // 2) We are connecting to the ndef technology - always
186 if ((technology == TagTechnology.NDEF) ||
187 (technology
227 connect(int technology) argument
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java31 public void onHostCardEmulationActivated(int technology); argument
32 public void onHostCardEmulationData(int technology, byte[] data); argument
33 public void onHostCardEmulationDeactivated(int technology); argument
53 boolean connect(int technology); argument
215 public boolean setTimeout(int technology, int timeout); argument
217 public int getTimeout(int technology); argument
221 boolean canMakeReadOnly(int technology); argument
223 int getMaxTransceiveLength(int technology); argument
H A DNfcService.java146 // Polling technology masks
296 public void onHostCardEmulationActivated(int technology) { argument
298 mCardEmulationManager.onHostCardEmulationActivated(technology);
303 public void onHostCardEmulationData(int technology, byte[] data) { argument
305 mCardEmulationManager.onHostCardEmulationData(technology, data);
310 public void onHostCardEmulationDeactivated(int technology) { argument
314 mCardEmulationManager.onHostCardEmulationDeactivated(technology);
1193 public int connect(int nativeHandle, int technology) throws RemoteException { argument
1215 if (tag.connect(technology)) {
1459 // to access the NDEF technology afte
[all...]

Completed in 95 milliseconds