/external/libnfc-nci/src/nfa/include/ |
nfa_cho_api.h | 22 * This is the public interface file for NFA Connection Handover, 36 /* Handover version */ 42 ** NFA Connection Handover callback events 64 /* NFA Connection Handover Carrier Power State */ 79 /* Device Role of Handover */ 135 ** Application may receive it while waiting for NFA_CHO_SELECT_EVT because of handover collision. 172 /* Union of all Connection Handover callback structures */ 186 /* NFA Connection Handover callback */ 202 ** connection handover events. 204 ** On this registration, "urn:nfc:sn:handover" server will b [all...] |
/external/libnfc-nci/src/nfa/int/ |
nfa_cho_int.h | 22 * This is the private interface file for the NFA Connection Handover. 37 /* NFA Connection Handover state */ 50 /* NFA Connection Handover substate in NFA_CHO_ST_CONNECTED */ 63 /* Handover Message receiving status for SAR */ 72 /* Handover Message Type */ 74 #define NFA_CHO_MSG_HR 1 /* Handover Request Message */ 75 #define NFA_CHO_MSG_HS 2 /* Handover Select Message */ 88 /* NFA Connection Handover internal events */ 99 NFA_CHO_RX_HANDOVER_MSG_EVT, /* Received Handover Message */ 194 #define NFA_CHO_FLAGS_CLIENT_ONLY 0x02 /* Handover server is not enabled * [all...] |
nfa_sys.h | 42 NFA_ID_CHO, /* Connection Handover sub-system */
|
/packages/apps/Nfc/src/com/android/nfc/beam/ |
BeamStatusReceiver.java | 20 "android.nfc.handover.intent.action.HANDOVER_STARTED"; 23 "android.nfc.handover.intent.action.TRANSFER_PROGRESS"; 26 "android.nfc.handover.intent.action.TRANSFER_DONE"; 29 "android.nfc.handover.intent.extra.HANDOVER_DATA_LINK_TYPE"; 33 "android.nfc.handover.intent.extra.TRANSFER_PROGRESS"; 36 "android.nfc.handover.intent.extra.TRANSFER_URI"; 39 "android.nfc.handover.intent.extra.OBJECT_COUNT"; 42 "android.nfc.handover.intent.extra.TRANSFER_STATUS"; 45 "android.nfc.handover.intent.extra.TRANSFER_MIME_TYPE"; 54 // permission needed to be able to receive handover status request [all...] |
BluetoothOppHandover.java | 44 "android.nfc.handover.intent.action.HANDOVER_SEND"; 47 "android.nfc.handover.intent.action.HANDOVER_SEND_MULTIPLE";
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wps-nfc.py | 19 import nfc.handover namespace 138 class HandoverServer(nfc.handover.HandoverServer): 146 # due to new WSC handover format 148 summary("received handover request {}".format(request.type)) 151 summary("not a handover request") 159 summary("send handover response {}".format(response.type)) 166 print "Parsed handover request: " + request.pretty() 178 summary("Could not get handover select carrier record from wpa_supplicant") 180 print "Handover select carrier record from wpa_supplicant:" 184 success_report("Handover reported successfully (responder)" [all...] |
p2p-nfc.py | 19 import nfc.handover namespace 161 summary("Could not get handover request carrier record from wpa_supplicant") 163 print "Handover request carrier record from wpa_supplicant: " + data.encode("hex") 169 print "Handover request (pre-WPS):" 181 print "Handover request:" 188 client = nfc.handover.HandoverClient(llc) 190 summary("Trying to initiate NFC connection handover") 192 summary("Connected for handover") 194 summary("Handover connection refused") 202 summary("Sending handover request" [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
Constants.java | 74 /** the intent that can be sent by handover requesters to stop a BTOPP transfer */ 83 /** the intent that is used for initiating a handover transfer */ 85 "android.nfc.handover.intent.action.HANDOVER_SEND"; 87 /** the intent that is used for initiating a multi-uri handover transfer */ 89 "android.nfc.handover.intent.action.HANDOVER_SEND_MULTIPLE"; 93 "android.nfc.handover.intent.action.HANDOVER_STARTED"; 95 /** intent action used to indicate the progress of a handover transfer */ 97 "android.nfc.handover.intent.action.TRANSFER_PROGRESS"; 99 /** intent action used to indicate the completion of a handover transfer */ 101 "android.nfc.handover.intent.action.TRANSFER_DONE" [all...] |
BluetoothOppHandoverReceiver.java | 43 if (D) Log.d(TAG, "No device attached to handover intent."); 55 if (D) Log.d(TAG, "No mimeType or stream attached to handover request"); 65 if (D) Log.d(TAG, "No mimeType or stream attached to handover request"); 82 if (D) Log.d(TAG, "Stopping handover transfer with Uri " + contentUri);
|
BluetoothOppTransferInfo.java | 62 boolean mHandoverInitiated; // the transfer was initiated by connection handover (eg. NFC)
|
/external/wpa_supplicant_8/hostapd/ |
wps-ap-nfc.py | 17 import nfc.handover namespace 110 class HandoverServer(nfc.handover.HandoverServer): 117 # due to new WSC handover format 119 summary("received handover request {}".format(request.type)) 122 summary("not a handover request") 130 summary("send handover response {}".format(response.type)) 136 print "Parsed handover request: " + request.pretty() 149 summary("Could not get handover select carrier record from hostapd") 151 print "Handover select carrier record from hostapd:" 154 success_report("Handover reported successfully" [all...] |
README-WPS | 341 contents of a Handover Select Message for connection handover when this 342 does not depend on the contents of the Handover Request Message. The 344 argument selects which type of connection handover is requested (WPS = 345 Wi-Fi handover as specified in WSC 2.0). 347 "nfc_report_handover <INIT/RESP> WPS <carrier from handover request> 348 <carrier from handover select>" is used to report completed NFC 349 connection handover. The first parameter indicates whether the local 350 device initiated or responded to the connection handover and the carrier 351 records are the selected carrier from the handover request and selec [all...] |
/packages/apps/Nfc/src/com/android/nfc/handover/ |
HandoverServer.java | 16 package com.android.nfc.handover; 39 static final String HANDOVER_SERVICE_NAME = "urn:nfc:sn:handover"; 196 // 1) Try to parse a handover request message from bytes received so far 211 // 2) convert to handover response 215 Log.e(TAG, "Failed to create handover response"); 219 // 3) send handover response 235 // We can process another handover transfer
|
HandoverClient.java | 16 package com.android.nfc.handover; 77 throw new IOException("Could not connect to handover service"); 123 // Now, try to read back the handover response 142 if (DBG) Log.d(TAG, "couldn't connect to handover service");
|
HandoverDataParser.java | 17 package com.android.nfc.handover; 39 * Manages handover of NFC to other technologies. 166 payload.put((byte)0x12); // connection handover v1.2 186 payload.put((byte) 0x12); // connection handover v1.2 197 * Returns null if message is not a Handover Request, 215 // we have a handover request, look for BT OOB record 249 // return BT OOB record so they can perform handover 331 // Check for Handover Select, followed by a BT OOB record
|
PeripheralHandoverService.java | 17 package com.android.nfc.handover; 115 if (DBG) Log.e(TAG, "Intent is null, can't do peripheral handover."); 151 Log.d(TAG, "Ignoring pairing request, existing handover in progress.");
|
/development/samples/ToyVpn/ |
_index.html | 3 <p>This application consists of an Android client and a sample implementation of a server. It performs IP over UDP and is capable of doing seamless handover between different networks as long as it receives the same VPN parameters.</p>
|
/packages/apps/Nfc/src/com/android/nfc/ |
NfcApplication.java | 46 // handover transfer. We don't want to instantiate an NfcService 49 // handover process
|
NfcDispatcher.java | 24 import com.android.nfc.handover.HandoverDataParser; 25 import com.android.nfc.handover.PeripheralHandoverService; 276 if (DBG) Log.i(TAG, "matched BT HANDOVER"); 590 HandoverDataParser.BluetoothHandoverData handover = mHandoverDataParser.parseBluetooth(m); local 591 if (handover == null || !handover.valid) return false; 600 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_DEVICE, handover.device); 601 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_NAME, handover.name); 602 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_TRANSPORT, handover.transport); 603 if (handover.oobData != null) [all...] |
P2pLinkManager.java | 28 import com.android.nfc.handover.HandoverClient; 29 import com.android.nfc.handover.HandoverDataParser; 30 import com.android.nfc.handover.HandoverServer; 113 * Called to indicate the remote device does not support connection handover 118 * Called to indicate the device is busy with another handover transfer 759 // Remote device may not support handover service, 811 if (DBG) Log.d(TAG, "Trying handover request"); [all...] |
/external/libnfc-nci/src/nfc/ndef/ |
ndef_cho_utils.c | 24 * Handover 43 /* Handover Request Record Type */ 46 /* Handover Select Record Type */ 49 /* Handover Carrier recrod Type */ 71 ** Description This function creates Handover Request Record with version. 95 ** Description This function creates Handover Select Record with version. 119 ** Description This function adds Handover Carrier Record.
|
/external/wpa_supplicant_8/wpa_supplicant/ |
README-WPS | 369 WPS carrier record for a Handover Request Message for connection 370 handover. The first argument selects the format of the output data and 371 the second argument selects which type of connection handover is 372 requested (WPS-CR = Wi-Fi handover as specified in WSC 2.0). 375 build the contents of a Handover Select Message for connection handover 376 when this does not depend on the contents of the Handover Request 378 the second argument selects which type of connection handover is 379 requested (WPS = Wi-Fi handover as specified in WSC 2.0). If the options 380 UUID|BSSID argument is included, this is a request to build the handover [all...] |
/external/libnfc-nci/src/nfc/include/ |
ndef_utils.h | 69 #define HR_REC_TYPE_LEN 2 /* Handover Request Record Type */ 70 #define HS_REC_TYPE_LEN 2 /* Handover Select Record Type */ 71 #define HC_REC_TYPE_LEN 2 /* Handover Carrier recrod Type */ 390 ** Description This function creates Handover Request Record with version. 402 ** Description This function creates Handover Select Record with version. 414 ** Description This function adds Handover Carrier Record.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
CallTracker.java | 100 log("getHoConnection: Handover connection match found = " + hoConn.toString()); 107 log("getHoConnection: Handover connection match found = " + hoConn.toString()); 116 // SRVCC started. Prepare handover connections list 119 // SRVCC FAILED/CANCELED. Clear the handover connections list
|
/frameworks/base/telephony/java/com/android/ims/ |
ImsReasonInfo.java | 87 // Handover not feasible 231 * handover, failed, etc) 237 * to handover the call to. We get a handover NOT_TRIGERRED message from the modem. This error 238 * code is received as part of the handover message.
|