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

/packages/apps/Nfc/nci/jni/
H A DRoutingManager.cpp169 // Set technology routes to UICC if it's there
172 ALOGE ("Failed to configure UICC technology routing.");
275 // Default routing for Nfc-A/Nfc-F technology if we don't have a SE
294 // Default routing for Nfc-A technology if we don't have a SE
310 // Default routing for Nfc-F technology if we don't have a SE
418 void RoutingManager::notifyActivated (UINT8 technology) argument
428 e->CallVoidMethod (mNativeData->manager, android::gCachedNfcManagerNotifyHostEmuActivated, (int)technology);
436 void RoutingManager::notifyDeactivated (UINT8 technology) argument
447 e->CallVoidMethod (mNativeData->manager, android::gCachedNfcManagerNotifyHostEmuDeactivated, (int)technology);
455 void RoutingManager::handleData (UINT8 technology, cons argument
[all...]
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
H A DCardEmulationManager.java105 public void onHostCardEmulationActivated(int technology) { argument
106 if (technology == NFC_HCE_APDU) {
109 } else if (technology == NFC_HCE_NFCF) {
116 public void onHostCardEmulationData(int technology, byte[] data) { argument
117 if (technology == NFC_HCE_APDU) {
119 } else if (technology == NFC_HCE_NFCF) {
124 public void onHostCardEmulationDeactivated(int technology) { argument
125 if (technology == NFC_HCE_APDU) {
128 } else if (technology == NFC_HCE_NFCF) {
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java270 public int getMaxTransceiveLength(int technology) { argument
271 switch (technology) {
374 private void notifyHostEmuActivated(int technology) { argument
375 mListener.onHostCardEmulationActivated(technology);
378 private void notifyHostEmuData(int technology, byte[] data) { argument
379 mListener.onHostCardEmulationData(technology, data);
382 private void notifyHostEmuDeactivated(int technology) { argument
383 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/nxp/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java300 public int getMaxTransceiveLength(int technology) { argument
301 switch (technology) {
394 private void notifyHostEmuActivated(int technology) { argument
395 mListener.onHostCardEmulationActivated(technology);
398 private void notifyHostEmuData(int technology, byte[] data) { argument
399 mListener.onHostCardEmulationData(technology, data);
402 private void notifyHostEmuDeactivated(int technology) { argument
403 mListener.onHostCardEmulationDeactivated(technology);
H A DNativeNfcTag.java56 // mConnectedTechIndex stores to which technology
59 // connected to a technology - technology changes
147 public synchronized int connectWithStatus(int technology) { argument
148 if (technology == TagTechnology.NFC_B) {
157 if (mTechList[i] == technology) {
163 // 2) We are connected to a technology which has
178 // 1) We are connected to a technology which has the same
182 // 2) We are connecting to the ndef technology - always
184 if ((technology
212 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.java131 // Polling technology masks
254 public void onHostCardEmulationActivated(int technology) { argument
256 mCardEmulationManager.onHostCardEmulationActivated(technology);
261 public void onHostCardEmulationData(int technology, byte[] data) { argument
263 mCardEmulationManager.onHostCardEmulationData(technology, data);
268 public void onHostCardEmulationDeactivated(int technology) { argument
270 mCardEmulationManager.onHostCardEmulationDeactivated(technology);
1064 public int connect(int nativeHandle, int technology) throws RemoteException { argument
1086 if (tag.connect(technology)) {
1330 // to access the NDEF technology afte
[all...]

Completed in 502 milliseconds