HomeSort by relevance Sort by last modified time
    Searched defs:passkey (Results 1 - 15 of 15) 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 94 ** Description This function is called to generate passkey.
158 ** Description This function is called to generate passkey.
178 ** Description This function is called to process a passkey.
187 UINT32 passkey; /* 19655 test number; */ local
191 STREAM_TO_UINT32(passkey, pp);
192 passkey &= ~SMP_PASSKEY_MASK;
195 while (passkey > BTM_MAX_PASSKEY_VAL)
196 passkey >>= 1;
200 UINT32_TO_STREAM(tt, passkey);
207 (*p_cb->p_callback)(SMP_PASSKEY_NOTIF_EVT, p_cb->pairing_bda, (tSMP_EVT_DATA *)&passkey);
    [all...]
  /external/chromium_org/extensions/browser/api/bluetooth/
bluetooth_private_api.cc 90 bool passkey = options.passkey.get() != NULL; local
92 if (!response && !pincode && !passkey)
94 if (pincode && passkey)
97 (pincode || passkey))
106 if (passkey && !device->ExpectingPasskey())
109 !passkey && !device->ExpectingConfirmation())
266 } else if (options.passkey.get()) {
267 device->SetPasskey(*options.passkey.get());
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.cc 294 // PIN code or Passkey entry during the pairing process.
308 // Passkey is a numeric in the range 0-999999, in this case the
311 // failure case, just use 0 since that's the most likely Passkey
313 unsigned passkey = 0; local
314 base::StringToUint(auth_token, &passkey);
316 VLOG(1) << "Passkey supplied: " << address << ": " << passkey; local
317 device->SetPasskey(passkey);
344 // Confirm displayed Passkey.
348 // Reject displayed Passkey
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingDialog.java 51 * BluetoothPairingDialog asks the user to enter a PIN / Passkey / simple confirmation
124 int passkey = local
126 if (passkey == BluetoothDevice.ERROR) {
127 Log.e(TAG, "Invalid Confirmation Passkey received, not showing any dialog");
130 mPairingKey = String.format(Locale.US, "%06d", passkey);
144 Log.e(TAG, "Invalid Confirmation Passkey or PIN received, not showing any dialog");
205 // Maximum of 6 digits for passkey
334 int passkey = Integer.parseInt(value); local
335 mDevice.setPasskey(passkey);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 55 * BluetoothPairingDialog asks the user to enter a PIN / Passkey / simple
139 int passkey = local
141 if (passkey == BluetoothDevice.ERROR) {
142 Log.e(TAG, "Invalid Confirmation Passkey received, not showing any dialog");
146 mPairingKey = String.format(Locale.US, "%06d", passkey);
161 "Invalid Confirmation Passkey or PIN received, not showing any dialog");
299 // Maximum of 6 digits for passkey
395 int passkey = Integer.parseInt(value); local
396 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:__anon6240
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 1502 UINT32 passkey; \/* passkey *\/ member in struct:__anon6059
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
BondStateMachine.java 215 int passkey = msg.arg1; local
217 sendDisplayPinIntent(devProp.getAddress(), passkey, variant); local
225 // passkey and displaying it to the user. If the keyboard doesn't follow
236 //In PIN_REQUEST, there is no passkey to display.So do not send the
354 int passkey) {
361 cod + " pairingVariant " + pairingVariant + " passkey: " + passkey);
398 msg.arg1 = passkey;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bluetoothapis.h 105 ULONG Passkey;
134 ULONG passkey; member in struct:_BLUETOOTH_PASSKEY_INFO
  /external/bluetooth/bluedroid/btif/src/
btif_dm.c 2417 UINT32 passkey = 0; local
    [all...]
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_int.h 484 UINT32 passkey; member in struct:__anon5129
    [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_api.h 623 #define BTA_DM_SP_KEY_NOTIF_EVT 11 /* Simple Pairing Passkey Notification */
629 #define BTA_DM_BLE_PASSKEY_NOTIF_EVT 17 /* SMP passkey notification event */
630 #define BTA_DM_BLE_PASSKEY_REQ_EVT 18 /* SMP passkey request event */
900 UINT32 passkey; \/* the numeric value for comparison. If just_works, do not show this number to UI *\/ member in struct:__anon5342
    [all...]
  /external/chromium_org/third_party/closure_compiler/externs/
chrome_extensions.js     [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 497 milliseconds