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

  /external/chromium_org/chromeos/dbus/
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/bluetooth/bluedroid/stack/smp/
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/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...]
  /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/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:__anon3870
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);
btm_api.h 1487 UINT32 passkey; \/* passkey *\/ member in struct:__anon3715
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_dm.c 814 p_ssp_key_notif->passkey);
1977 UINT32 passkey = 0; local
    [all...]
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_int.h 456 UINT32 passkey; member in struct:__anon2906
  /external/bluetooth/bluedroid/bta/include/
bta_api.h 497 #define BTA_DM_SP_KEY_NOTIF_EVT 11 /* Simple Pairing Passkey Notification */
503 #define BTA_DM_BLE_PASSKEY_NOTIF_EVT 17 /* SMP passkey notification event */
504 #define BTA_DM_BLE_PASSKEY_REQ_EVT 18 /* SMP passkey request event */
768 UINT32 passkey; \/* the numeric value for comparison. If just_works, do not show this number to UI *\/ member in struct:__anon3075
    [all...]

Completed in 113 milliseconds