Searched refs:pincode (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/extensions/browser/api/bluetooth/
H A Dbluetooth_private_api.cc89 bool pincode = options.pincode.get() != NULL; local
92 if (!response && !pincode && !passkey)
94 if (pincode && passkey)
97 (pincode || passkey))
104 if (pincode && !device->ExpectingPinCode())
108 if (options.response == bt_private::PAIRING_RESPONSE_CONFIRM && !pincode &&
264 if (options.pincode.get()) {
265 device->SetPinCode(*options.pincode.get());
H A Dbluetooth_api_pairing_delegate.cc56 const std::string& pincode) {
60 event.pincode.reset(new std::string(pincode));
54 DisplayPinCode( device::BluetoothDevice* device, const std::string& pincode) argument
H A Dbluetooth_api_pairing_delegate.h32 const std::string& pincode) OVERRIDE;
/external/chromium_org/device/bluetooth/
H A Dbluetooth_pairing_chromeos.h45 // Sends the PIN code |pincode| to the remote device during pairing.
49 void SetPinCode(const std::string& pincode);
53 void DisplayPinCode(const std::string& pincode);
H A Dbluetooth_pairing_chromeos.cc91 void BluetoothPairingChromeOS::SetPinCode(const std::string& pincode) { argument
96 pincode);
106 void BluetoothPairingChromeOS::DisplayPinCode(const std::string& pincode) { argument
113 pairing_delegate_->DisplayPinCode(device_, pincode);
H A Dbluetooth_device.h111 // user enter the PIN code |pincode| into the device |device| so that it
115 // |pincode| will always be a six-digit numeric in the range 000000-999999
118 const std::string& pincode) = 0;
302 // Sends the PIN code |pincode| to the remote device during pairing.
306 virtual void SetPinCode(const std::string& pincode) = 0;
H A Dbluetooth_device_mac.h48 virtual void SetPinCode(const std::string& pincode) OVERRIDE;
H A Dbluetooth_device_win.h54 virtual void SetPinCode(const std::string& pincode) OVERRIDE;
H A Dbluetooth_adapter_unittest.cc114 const std::string& pincode) OVERRIDE {}
H A Dbluetooth_device_chromeos.h56 virtual void SetPinCode(const std::string& pincode) OVERRIDE;
/external/chromium_org/chromeos/dbus/
H A Dfake_bluetooth_agent_service_provider.cc50 const std::string& pincode) {
51 VLOG(1) << object_path_.value() << ": DisplayPincode " << pincode << " for "
53 delegate_->DisplayPinCode(device_path, pincode);
48 DisplayPinCode( const dbus::ObjectPath& device_path, const std::string& pincode) argument
H A Dbluetooth_agent_service_provider.h39 // indicates that a pincode or passkey has been obtained, or permission
51 // rejected or cancelled) and the |pincode| requested.
83 // user enter the PIN code |pincode| into the device with object path
89 // |pincode| will always be a six-digit numeric in the range 000000-999999
92 const std::string& pincode) = 0;
H A Dfake_bluetooth_agent_service_provider.h36 const std::string& pincode);
H A Dbluetooth_agent_service_provider.cc171 std::string pincode; local
173 !reader.PopString(&pincode)) {
179 delegate_->DisplayPinCode(device_path, pincode);
337 const std::string& pincode) {
345 writer.AppendString(pincode);
334 OnPinCode(dbus::MethodCall* method_call, dbus::ExportedObject::ResponseSender response_sender, Delegate::Status status, const std::string& pincode) argument
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_hid_detection.css54 #hid-keyboard-pincode {
70 #hid-detection #hid-keyboard-pincode {
97 .pairing #hid-keyboard-pincode {
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dbluetooth.css92 #bluetooth-pairing-pincode-entry,
94 #bluetooth-pincode {
104 #bluetooth-pairing-pincode-entry {
H A Dbluetooth_pair_device_overlay.js35 'bluetooth-pairing-pincode-entry',
91 else if (!$('bluetooth-pairing-pincode-entry').hidden)
92 args.push($('bluetooth-pincode').value);
119 $('bluetooth-pincode').oninput = function() {
121 $('bluetooth-pincode').value.length == 0;
125 $('bluetooth-pincode').addEventListener('keydown',
150 * Sets input focus on the passkey or pincode field if appropriate.
153 if (!$('bluetooth-pincode').hidden)
154 $('bluetooth-pincode').focus();
191 } else if (this.device_.pincode) {
[all...]
/external/chromium_org/ash/system/chromeos/bluetooth/
H A Dbluetooth_notification_controller.h46 const std::string& pincode) OVERRIDE;
H A Dbluetooth_notification_controller.cc220 const std::string& pincode) {
223 device->GetName(), base::UTF8ToUTF16(pincode));
218 DisplayPinCode( BluetoothDevice* device, const std::string& pincode) argument
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Dbluetooth_options_browsertest.js60 * Fake input of a pincode or passkey.
197 expectFalse($('bluetooth-pairing-pincode-entry').hidden);
199 // Connect button should be visible but disabled until a pincode is entered.
205 // Simulate process of entering a pincode.
206 var pincode = '123456';
209 [fakeDevice.address, 'connect', pincode]).will(
216 this.fakeInput($('bluetooth-pincode'), pincode);
H A Dbluetooth_options_handler.h75 // user enter the PIN code |pincode| into the device |device| so that it
80 // |pincode| will always be a six-digit numeric in the range 000000-999999
83 const std::string& pincode) OVERRIDE;
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dhid_detection_screen_handler.cc41 const char kPincodeArgName[] = "pincode";
45 // Standard length of pincode for pairing BT keyboards.
255 const std::string& pincode) {
261 params.SetString("pincode", pincode);
274 std::string pincode = base::UintToString(passkey); local
275 pincode = std::string(kPincodeLength - pincode.length(), '0').append(pincode);
276 params.SetString("pincode", pincod
254 DisplayPinCode(device::BluetoothDevice* device, const std::string& pincode) argument
[all...]
H A Dhid_detection_screen_handler.h63 const std::string& pincode) OVERRIDE;
/external/chromium_org/components/pairing/
H A Dbluetooth_controller_pairing_controller.h101 const std::string& pincode) OVERRIDE;
H A Dbluetooth_host_pairing_controller.h94 const std::string& pincode) OVERRIDE;

Completed in 2859 milliseconds

12