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

1 2

  /external/chromium_org/ash/system/tray/
system_tray_delegate.cc 22 paired(false) {
system_tray_delegate.h 50 bool paired; member in struct:ash::BluetoothDeviceInfo
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_hid_detection.css 80 .paired #hid-keyboard-label-paired,
81 .paired #hid-mouse-label-paired,
85 .paired #hid-keyboard-tick,
86 .paired #hid-mouse-tick {
92 .paired #hid-keyboard-tick,
93 .paired #hid-mouse-tick {
  /external/chromium_org/remoting/webapp/
paired_client_manager.js 7 * Dialog for showing the list of clients that are paired with this host.
17 * isValid() method to determine whether or not a valid paired client instance
20 * @param {Object} pairedClient The paired client, as returned by the native
40 * Create the DOM elements representing this client in the paired client
43 * @param {remoting.PairedClientManager} parent The paired client manager
81 * paired client instance.
117 * @param {HTMLElement} listContainer HTML <div> to contain the list of paired
120 * the user that clients are paired and containing the link to open the
181 * Populate the dialog with the list of paired clients and show or hide the
184 * @param {*} pairedClients The list of paired clients as returned by th
    [all...]
session_connector.js 37 * this device was paired, if it is already paired.
39 * this device was paired, if it is already paired.
49 * @param {string} clientId The paired client id.
session_connector_impl.js 102 * For paired connections, the client id of this device, issued by the host.
110 * For paired connections, the paired secret for this device, issued by the
194 * this device was paired, if it is already paired.
196 * this device was paired, if it is already paired.
211 * @param {string} clientId The paired client id.
234 * this device was paired, if it is already paired
    [all...]
client_plugin.js 62 * @param {string} clientPairingId For paired Me2Me connections, the
64 * @param {string} clientPairedSecret For paired Me2Me connections, the
65 * paired secret for this client, as issued by the host.
137 * Request that this client be paired with the current host.
event_handlers.js 96 { event: 'click', id: 'close-paired-client-manager-dialog', fn: goHome },
99 { event: 'click', id: 'open-paired-client-manager-dialog',
remoting.js 256 var dialog = document.getElementById('paired-clients-list');
257 var message = document.getElementById('paired-client-manager-message');
258 var deleteAll = document.getElementById('delete-all-paired-clients');
259 var close = document.getElementById('close-paired-client-manager-dialog');
260 var working = document.getElementById('paired-client-manager-dialog-working');
261 var error = document.getElementById('paired-client-manager-dialog-error');
262 var noPairedClients = document.getElementById('no-paired-clients');
host_daemon_facade.js 247 throw 'No paired clients!';
465 * Retrieves the list of paired clients.
477 * Clears all paired clients from the registry.
488 * Deletes a paired client referenced by client id.
host_controller.js 487 * Fetch the list of paired clients for this host.
499 * Delete a single paired client.
512 * Delete all paired clients.
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_browsertest.js 52 * paired: boolean}} device Description of the device.
74 expectTrue($('bluetooth-paired-devices-list').parentNode.hidden);
82 expectFalse($('bluetooth-paired-devices-list').parentNode.hidden);
88 var pairedDeviceList = $('bluetooth-paired-devices-list');
96 paired: true
104 paired: false
112 paired: false
115 // Ensure data models for the paired and unpaired device lists are properly
172 var pairedDeviceList = $('bluetooth-paired-devices-list');
180 paired: fals
    [all...]
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_device.cc 16 bool paired,
44 .WillByDefault(testing::Return(paired));
mock_bluetooth_device.h 25 bool paired,
  /external/chromium_org/chrome/browser/resources/options/chromeos/
bluetooth.css 45 #bluetooth-paired-devices-list {
49 #bluetooth-paired-devices-list,
64 #bluetooth-paired-devices-list-empty-placeholder {
bluetooth_device_list.js 8 * paired: boolean,
43 // Only show the close button for paired devices, but not for connecting
45 el.deletable = device.paired && !device.connecting;
67 // * Paired, not connected but connectable devices: regular and
68 // * Paired, not connected and not connectable devices: grayed out.
70 (this.data.paired && this.data.connected);
71 this.notconnectable = this.data.paired && !this.data.connecting &&
73 // "paired" devices are those that are remembered but not connected.
74 this.paired = this.data.paired && !this.data.connected &
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothControllerImpl.java 203 final PairedDevice paired = new PairedDevice(); local
204 paired.id = device.getAddress();
205 paired.tag = device;
206 paired.name = device.getAliasName();
207 paired.state = connectionStateToPairedDeviceState(info.connectionStateIndex);
208 rt.add(paired);
  /external/chromium_org/chromeos/dbus/
bluetooth_device_client.h 51 // Indicates that the device is currently paired. Read-only.
52 dbus::Property<bool> paired; member in struct:chromeos::BluetoothDeviceClient::Properties
fake_bluetooth_device_client.cc 233 properties->paired.ReplaceValue(true);
295 if (properties->paired.value() != true &&
298 // Must be paired.
299 error_callback.Run(bluetooth_device::kErrorFailed, "Not paired");
301 } else if (properties->paired.value() == true &&
303 // Must not be paired
305 "Connection fails while paired");
446 if (properties->paired.value() == true) {
447 // Already paired.
    [all...]
  /external/chromium_org/extensions/browser/api/bluetooth/
bluetooth_api_utils.cc 112 out->paired.reset(new bool(device.IsPaired()));
  /external/chromium_org/ash/system/bluetooth/
tray_bluetooth.cc 171 } else if (list[i].connected && list[i].paired) {
174 } else if (list[i].paired) {
  /external/chromium_org/chrome/browser/metrics/
chromeos_metrics_provider_unittest.cc 196 // The fake bluetooth adapter class already claims to be paired with one
198 // can test the cases where a device is not paired (LE device, generally)
211 properties->paired.ReplaceValue(true);
227 // First device should match the Paired Device object, complete with
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
bytecode.pxi 77 # Keep Bytecode reference paired with bc using weak references.
yasm.pyx 95 # Link to associated data mechanism to keep Python references paired with
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_chromeos.cc 372 property_name == properties->paired.name() ||
381 // When a device becomes paired, mark it as trusted so that the user does
383 if (property_name == properties->paired.name() &&
384 properties->paired.value() && !properties->trusted.value())
540 // We always set paired devices to Trusted, so the only reason that this
549 // TODO(keybuk): reject service authorizations when not paired, determine
    [all...]

Completed in 5001 milliseconds

1 2