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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/chrome/common/extensions/api/
bluetooth_private.json 75 "description": "A numeric passkey is required to be entered by the user."
79 "description": "Display a zero padded 6 digit numeric passkey that the user entered on the remote device. This event may occur multiple times during pairing to update the entered passkey."
83 "description": "The number of keys inputted by the user on the remote device when entering a passkey. This event may be called multiple times during pairing to update the number of keys inputted."
87 "description": "Requests that a 6 digit passkey be displayed and the user confirms that both devies show the same passkey."
123 "passkey": {
125 "name": "passkey",
180 "passkey": {
182 "name": "passkey",
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api_pairing_delegate.cc 66 uint32 passkey) {
70 event.passkey.reset(new int(passkey));
85 uint32 passkey) {
89 event.passkey.reset(new int(passkey));
bluetooth_api_pairing_delegate.h 34 uint32 passkey) OVERRIDE;
38 uint32 passkey) OVERRIDE;
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/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);
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
95 // Passkey for authentication of the device with object path |device_path|,
96 // the agent should obtain the passkey from the user (a numeric in the
102 // passkey-less pairing.
107 // user enter the Passkey |passkey| into the device with object path
113 // but not display, such as keyboards. The Passkey is a numeric in the
117 // As the user enters the passkey onto the device, |entered| will be
120 uint32 passkey, uint16 entered) = 0
    [all...]
fake_bluetooth_agent_service_provider.h 40 uint32 passkey, int16 entered);
43 uint32 passkey,
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_pair_device_overlay.js 32 var ELEMENTS = ['bluetooth-pairing-passkey-display',
33 'bluetooth-pairing-passkey-entry',
66 * passkey: number|undefined,
94 var passkey = self.device_.passkey;
95 if (passkey)
96 args.push(String(passkey));
97 else if (!$('bluetooth-pairing-passkey-entry').hidden)
98 args.push($('bluetooth-passkey').value);
114 $('bluetooth-passkey').oninput = function()
    [all...]
bluetooth_pair_device_overlay.html 7 <div id="bluetooth-pairing-passkey-display" hidden></div>
8 <div id="bluetooth-pairing-passkey-entry" hidden>
9 <input id="bluetooth-passkey" maxlength="6" type="text">
bluetooth.css 90 #bluetooth-pairing-passkey-display,
91 #bluetooth-pairing-passkey-entry,
93 #bluetooth-passkey,
102 #bluetooth-pairing-passkey-display,
103 #bluetooth-pairing-passkey-entry,
134 .bluetooth-passkey-char {
142 .bluetooth-passkey-char:first-child {
  /external/chromium_org/device/bluetooth/
bluetooth_pairing_chromeos.h 27 // Passkey to be returned.
31 // confirmation of a displayed passkey.
55 // Requests a Passkey for the current device from the current pairing
62 // Sends the Passkey |passkey| to the remote device during pairing.
66 // passkey-less pairing, and are a numeric in the range 0-999999.
67 void SetPasskey(uint32 passkey);
69 // Requests a Passkey for the current device be displayed by the current
71 void DisplayPasskey(uint32 passkey);
78 // Requests confirmation that |passkey| is displayed on the current devic
    [all...]
bluetooth_pairing_chromeos.cc 29 // Number of keys that will be entered for a passkey, six digits plus the
138 void BluetoothPairingChromeOS::SetPasskey(uint32 passkey) {
143 passkey);
153 void BluetoothPairingChromeOS::DisplayPasskey(uint32 passkey) {
160 pairing_delegate_->DisplayPasskey(device_, passkey);
176 uint32 passkey,
186 pairing_delegate_->ConfirmPasskey(device_, passkey);
bluetooth_device.h 120 // Passkey for authentication of the device |device|, the delegate should
121 // obtain the passkey from the user (a numeric in the range 0-999999) and
127 // passkey-less pairing.
141 // user enter the Passkey |passkey| into the device |device| so that it
145 // but not display, such as keyboards. The Passkey is a numeric in the
149 uint32 passkey) = 0;
153 // using a PIN code or a Passkey.
157 // on every pairing process that requires a PIN code or a Passkey because
167 // user confirm that the Passkey |passkey| is displayed on the scree
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.h 63 // Passkey for authentication of the device |device|, the UI will display
64 // a blank entry form to obtain the passkey from the user (a numeric in the
69 // passkey-less pairing.
88 // user enter the Passkey |passkey| into the device |device| so that it
89 // may be authenticated, the UI will display the passkey with accompanying
93 // but not display, such as keyboards. The Passkey is a numeric in the
97 device::BluetoothDevice* device, uint32 passkey) OVERRIDE;
103 // using a PIN code or a Passkey.
106 // same pairing overlay where the PIN code or Passkey is displayed
    [all...]
bluetooth_options_handler.cc 296 // PIN code or Passkey entry during the pairing process.
310 // Passkey is a numeric in the range 0-999999, in this case the
313 // failure case, just use 0 since that's the most likely Passkey
315 unsigned passkey = 0; local
316 base::StringToUint(auth_token, &passkey);
318 VLOG(1) << "Passkey supplied: " << address << ": " << passkey; local
319 device->SetPasskey(passkey);
346 // Confirm displayed Passkey.
350 // Reject displayed Passkey
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
smp_api.c 219 ** passkey request to the application.
221 ** Parameters: bd_addr - Address of the device for which passkey was requested
223 ** passkey - numeric value in the range of
227 void SMP_PasskeyReply (BD_ADDR bd_addr, UINT8 res, UINT32 passkey)
234 passkey, res);
256 if (passkey > BTM_MAX_PASSKEY_VAL || res != SMP_SUCCESS)
258 SMP_TRACE_WARNING ("SMP_PasskeyReply() - Wrong key len: %d or passkey entry fail", passkey);
265 smp_convert_string_to_tk(p_cb->tk, passkey);
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;
197 SMP_TRACE_ERROR("Passkey generated = %d", passkey);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
JniCallbacks.java 49 int passkey) {
51 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:__anon6235
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);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingDialog.java 49 * BluetoothPairingDialog asks the user to enter a PIN / Passkey / simple confirmation
122 int passkey = local
124 if (passkey == BluetoothDevice.ERROR) {
125 Log.e(TAG, "Invalid Confirmation Passkey received, not showing any dialog");
128 mPairingKey = String.format(Locale.US, "%06d", passkey);
142 Log.e(TAG, "Invalid Confirmation Passkey or PIN received, not showing any dialog");
203 // Maximum of 6 digits for passkey
345 int passkey = Integer.parseInt(value); local
346 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/btif/include/
btif_api.h 260 ** Description BT SSP passkey reply
266 uint8_t accept, uint32_t passkey);
272 ** Description BT SSP Reply - Just Works, Numeric Comparison & Passkey Entry
279 uint32_t passkey);
  /external/chromium_org/chrome/browser/resources/chromeos/
browser_options.js 46 * passkey: number | undefined
  /external/chromium_org/ash/system/chromeos/bluetooth/
bluetooth_notification_controller.h 48 uint32 passkey) OVERRIDE;
52 uint32 passkey) OVERRIDE;

Completed in 1927 milliseconds

1 2 3 4 5 6 7 8 91011