HomeSort by relevance Sort by last modified time
    Searched refs:passkey (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/chromeos/dbus/
fake_bluetooth_agent_service_provider.cc 66 uint32 passkey, int16 entered) {
67 VLOG(1) << object_path_.value() << ": DisplayPasskey " << passkey
69 delegate_->DisplayPasskey(device_path, passkey, entered);
74 uint32 passkey,
76 VLOG(1) << object_path_.value() << ": RequestConfirmation " << passkey
78 delegate_->RequestConfirmation(device_path, passkey, callback);
fake_bluetooth_agent_service_provider.h 40 uint32 passkey, int16 entered);
43 uint32 passkey,
bluetooth_agent_service_provider.h 39 // indicates that a pincode or passkey has been obtained, or permission
56 // rejected or cancelled) and the |passkey| requested, a numeric in the
93 // Passkey for authentication of the device with object path |device_path|,
94 // the agent should obtain the passkey from the user (a numeric in the
100 // passkey-less pairing.
105 // user enter the Passkey |passkey| into the device with object path
111 // but not display, such as keyboards. The Passkey is a numeric in the
115 // As the user enters the passkey onto the device, |entered| will be
118 uint32 passkey, uint16 entered) = 0
    [all...]
bluetooth_agent_service_provider.cc 184 // Called by dbus:: when the Bluetooth daemon requires a Passkey for
209 // enter a Passkey into the remote device so that it may be
218 uint32 passkey; local
221 !reader.PopUint32(&passkey) ||
228 delegate_->DisplayPasskey(device_path, passkey, entered);
234 // confirm that a Passkey is displayed on the screen of the remote
244 uint32 passkey; local
246 !reader.PopUint32(&passkey)) {
258 delegate_->RequestConfirmation(device_path, passkey, callback);
368 // Called by the Delegate to response to a method requesting a Passkey
    [all...]
  /external/chromium_org/chrome/browser/resources/options/chromeos/
bluetooth.css 88 #bluetooth-pairing-passkey-display,
89 #bluetooth-pairing-passkey-entry,
91 #bluetooth-passkey,
100 #bluetooth-pairing-passkey-display,
101 #bluetooth-pairing-passkey-entry,
140 .bluetooth-passkey-char {
148 .bluetooth-passkey-char:first-child {
  /external/bluetooth/bluedroid/btif/include/
btif_api.h 249 ** Description BT SSP passkey reply
255 uint8_t accept, uint32_t passkey);
261 ** Description BT SSP Reply - Just Works, Numeric Comparison & Passkey Entry
268 uint32_t passkey);
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
JniCallbacks.java 48 int passkey) {
50 passkey);
RemoteDevices.java 338 // passkey and displaying it to the user. If the keyboard doesn't follow
362 int passkey) {
370 cod + " pairingVariant " + pairingVariant + " passkey: " + passkey);
396 intent.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, passkey);
  /external/bluetooth/bluedroid/stack/smp/
smp_api.c 215 ** passkey request to the application.
217 ** Parameters: bd_addr - Address of the device for which passkey was requested
219 ** passkey - numeric value in the range of
223 void SMP_PasskeyReply (BD_ADDR bd_addr, UINT8 res, UINT32 passkey)
230 passkey, res);
252 if (passkey > BTM_MAX_PASSKEY_VAL || res != SMP_SUCCESS)
254 SMP_TRACE_WARNING1 ("SMP_PasskeyReply() - Wrong key len: %d or passkey entry fail", passkey);
261 smp_convert_string_to_tk(p_cb->tk, passkey);
smp_keys.c 93 ** Description This function is called to generate passkey.
157 ** Description This function is called to generate passkey.
175 ** Description This function is called to process a passkey.
184 UINT32 passkey; /* 19655 test number; */ local
188 STREAM_TO_UINT32(passkey, pp);
189 passkey &= ~SMP_PASSKEY_MASK;
192 while (passkey > BTM_MAX_PASSKEY_VAL)
193 passkey >>= 1;
194 SMP_TRACE_ERROR1("Passkey generated = %d", passkey);
    [all...]
  /external/chromium_org/device/bluetooth/
bluetooth_device.h 93 // Passkey for authentication of the device |device|, the delegate should
94 // obtain the passkey from the user (a numeric in the range 0-999999) and
100 // passkey-less pairing.
116 // user enter the Passkey |passkey| into the device |device| so that it
121 // but not display, such as keyboards. The Passkey is a numeric in the
125 uint32 passkey) = 0;
129 // using a PIN code or a Passkey.
134 // on every pairing process that requires a PIN code or a Passkey because
144 // user confirm that the Passkey |passkey| is displayed on the scree
    [all...]
bluetooth_device_chromeos.cc 313 void BluetoothDeviceChromeOS::SetPasskey(uint32 passkey) {
317 passkey_callback_.Run(SUCCESS, passkey);
489 uint32 passkey,
493 VLOG(1) << object_path_.value() << ": DisplayPasskey: " << passkey
503 pairing_delegate_->DisplayPasskey(this, passkey);
510 uint32 passkey,
514 VLOG(1) << object_path_.value() << ": RequestConfirmation: " << passkey;
523 pairing_delegate_->ConfirmPasskey(this, passkey);
bluetooth_device_mac.h 51 virtual void SetPasskey(uint32 passkey) OVERRIDE;
bluetooth_device_win.h 51 virtual void SetPasskey(uint32 passkey) OVERRIDE;
bluetooth_device_chromeos.h 52 virtual void SetPasskey(uint32 passkey) OVERRIDE;
95 uint32 passkey, uint16 entered) OVERRIDE;
97 uint32 passkey,
bluetooth_device_win.cc 152 void BluetoothDeviceWin::SetPasskey(uint32 passkey) {
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.cc 267 // PIN code or Passkey entry during the pairing process.
281 // Passkey is a numeric in the range 0-999999, in this case the
284 // failure case, just use 0 since that's the most likely Passkey
286 unsigned passkey = 0; local
287 base::StringToUint(auth_token, &passkey);
289 VLOG(1) << "Passkey supplied: " << address << ": " << passkey; local
290 device->SetPasskey(passkey);
316 // Confirm displayed Passkey.
320 // Reject displayed Passkey
    [all...]
bluetooth_options_handler.h 62 // Passkey for authentication of the device |device|, the UI will display
63 // a blank entry form to obtain the passkey from the user (a numeric in the
68 // passkey-less pairing.
87 // user enter the Passkey |passkey| into the device |device| so that it
88 // may be authenticated, the UI will display the passkey with accompanying
92 // but not display, such as keyboards. The Passkey is a numeric in the
96 device::BluetoothDevice* device, uint32 passkey) OVERRIDE;
102 // using a PIN code or a Passkey.
105 // same pairing overlay where the PIN code or Passkey is displayed
    [all...]
bluetooth_options_browsertest.js 60 * Fake input of a pincode or passkey.
195 expectTrue($('bluetooth-pairing-passkey-display').hidden);
196 expectTrue($('bluetooth-pairing-passkey-entry').hidden);
  /external/bluetooth/bluedroid/stack/include/
smp_api.h 35 #define SMP_PASSKEY_NOTIF_EVT 3 /* passkey notification event */
36 #define SMP_PASSKEY_REQ_EVT 4 /* passkey request event */
144 UINT32 passkey; member in union:__anon1154
253 ** Passkey request to the application.
257 ** passkey - numeric value in the range of
261 SMP_API extern void SMP_PasskeyReply (BD_ADDR bd_addr, UINT8 res, UINT32 passkey);
  /frameworks/base/core/java/android/bluetooth/
IBluetooth.aidl 72 passkey);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingDialog.java 49 * BluetoothPairingDialog asks the user to enter a PIN / Passkey / simple confirmation
119 int passkey = local
121 if (passkey == BluetoothDevice.ERROR) {
122 Log.e(TAG, "Invalid Confirmation Passkey received, not showing any dialog");
125 mPairingKey = String.format(Locale.US, "%06d", passkey);
139 Log.e(TAG, "Invalid Confirmation Passkey or PIN received, not showing any dialog");
200 // Maximum of 6 digits for passkey
320 int passkey = Integer.parseInt(value); local
321 mDevice.setPasskey(passkey);
  /external/bluetooth/bluedroid/btif/src/
bluetooth.c 292 uint8_t accept, uint32_t passkey)
298 return btif_dm_ssp_reply(bd_addr, variant, accept, passkey);
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 153 public PairReceiver(BluetoothDevice device, int passkey, byte[] pin, int expectedFlags) {
157 mPasskey = passkey;
741 * @param passkey The pairing passkey if pairing requires a passkey. Any value if not.
744 public void pair(BluetoothAdapter adapter, BluetoothDevice device, int passkey, byte[] pin) {
745 pairOrAcceptPair(adapter, device, passkey, pin, true);
754 * @param passkey The pairing passkey if pairing requires a passkey. Any value if not
    [all...]
  /hardware/libhardware/include/hardware/
bluetooth.h 288 /* TODO: Passkey request callback shall not be needed for devices with display
433 /** BT SSP Reply - Just Works, Numeric Comparison and Passkey
434 * passkey shall be zero for BT_SSP_VARIANT_PASSKEY_COMPARISON &
436 * For BT_SSP_VARIANT_PASSKEY_ENTRY, if accept==FALSE, then passkey
439 uint8_t accept, uint32_t passkey);

Completed in 375 milliseconds

1 2