HomeSort by relevance Sort by last modified time
    Searched defs:handover (Results 1 - 8 of 8) sorted by null

  /packages/apps/Nfc/src/com/android/nfc/handover/
ConfirmConnectActivity.java 17 package com.android.nfc.handover;
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");
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
PeripheralHandoverService.java 17 package com.android.nfc.handover;
123 if (DBG) Log.e(TAG, "Intent is null, can't do peripheral handover.");
153 Log.d(TAG, "Ignoring pairing request, existing handover in progress.");
BluetoothPeripheralHandover.java 17 package com.android.nfc.handover;
59 static final String ACTION_ALLOW_CONNECT = "com.android.nfc.handover.action.ALLOW_CONNECT";
60 static final String ACTION_DENY_CONNECT = "com.android.nfc.handover.action.DENY_CONNECT";
61 static final String ACTION_TIMEOUT_CONNECT = "com.android.nfc.handover.action.TIMEOUT_CONNECT";
607 Log.i(TAG, "Timeout completing BT handover");
HandoverDataParser.java 17 package com.android.nfc.handover;
43 * Manages handover of NFC to other technologies.
190 payload.put((byte)0x12); // connection handover v1.2
210 payload.put((byte) 0x12); // connection handover v1.2
221 * Returns null if message is not a Handover Request,
239 // we have a handover request, look for BT OOB record
273 // return BT OOB record so they can perform handover
355 // Check for Handover Select, followed by a BT OOB record
  /external/avb/examples/uefi/
uefi_avb_boot.c 34 * about the boot/handover protocol.
88 handover_f handover; local
91 handover =
93 handover(image, ST, setup);
102 handover_f handover; local
104 handover = (handover_f)((UINTN)setup->code32_start + setup->handover_offset);
105 handover(image, ST, setup);
244 /* Now set up the EFI handover. */
  /packages/apps/Nfc/src/com/android/nfc/
NfcDispatcher.java 25 import com.android.nfc.handover.HandoverDataParser;
26 import com.android.nfc.handover.PeripheralHandoverService;
337 if (DBG) Log.i(TAG, "matched BT HANDOVER");
673 HandoverDataParser.BluetoothHandoverData handover = mHandoverDataParser.parseBluetooth(m); local
674 if (handover == null || !handover.valid) return false;
683 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_DEVICE, handover.device);
684 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_NAME, handover.name);
685 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_TRANSPORT, handover.transport);
686 if (handover.oobData != null)
    [all...]

Completed in 97 milliseconds