/external/chromium_org/remoting/protocol/ |
pairing_registry.cc | 29 PairingRegistry::Pairing::Pairing() { 32 PairingRegistry::Pairing::Pairing(const base::Time& created_time, 42 PairingRegistry::Pairing::~Pairing() { 45 PairingRegistry::Pairing PairingRegistry::Pairing::Create( 54 return Pairing(created_time, client_name, client_id, shared_secret); 57 PairingRegistry::Pairing PairingRegistry::Pairing::CreateFromValue 206 Pairing pairing = delegate_->Load(client_id); local 266 Pairing pairing = Pairing::CreateFromValue(*pairing_json); local [all...] |
pairing_registry.h | 43 struct Pairing { 44 Pairing(); 45 Pairing(const base::Time& created_time, 49 ~Pairing(); 51 static Pairing Create(const std::string& client_name); 52 static Pairing CreateFromValue(const base::DictionaryValue& pairing); 56 bool operator==(const Pairing& other) const; 72 // Mapping from client id to pairing information. 73 typedef std::map<std::string, Pairing> PairedClients [all...] |
protocol_mock_objects.cc | 74 protocol::PairingRegistry::Pairing MockPairingRegistryDelegate::Load( 80 return protocol::PairingRegistry::Pairing(); 85 const protocol::PairingRegistry::Pairing& pairing) { 86 pairings_[pairing.client_id()] = pairing;
|
pairing_host_authenticator.h | 42 // Continue processing a protocol message once the pairing information for 46 PairingRegistry::Pairing pairing);
|
pairing_registry_unittest.cc | 35 MOCK_METHOD1(GetPairingCallback, void(PairingRegistry::Pairing)); 45 // Verify that a pairing Dictionary has correct entries, but doesn't include 47 void VerifyPairing(PairingRegistry::Pairing expected, 74 PairingRegistry::Pairing actual) { 95 PairingRegistry::Pairing pairing_1 = registry->CreatePairing("my_client"); 96 PairingRegistry::Pairing pairing_2 = registry->CreatePairing("my_client"); 117 PairingRegistry::Pairing pairing_1 = registry->CreatePairing("client1"); 118 PairingRegistry::Pairing pairing_2 = registry->CreatePairing("client2"); 145 PairingRegistry::Pairing pairing_1 = registry->CreatePairing("client1"); 146 PairingRegistry::Pairing pairing_2 = registry->CreatePairing("client2") [all...] |
pairing_authenticator_base.cc | 15 { kChromotingXmlNamespace, "pairing-info" }; 21 { kChromotingXmlNamespace, "pairing-failed" }; 59 // If pairing failed, and we haven't already done so, try again with the PIN. 74 // this case the pairing protocol can continue by communicating the error 111 LOG(ERROR) << "Pairing failed: " << error;
|
pairing_authenticator_base.h | 15 // The pairing authenticator builds on top of V2Authenticator to add 16 // support for PIN-less authentication via device pairing: 34 // If a client device is not already paired, but supports pairing, then 36 // differs, which the client uses to determine that pairing should be offered 71 // cause the peer to be notified that pairing has failed and that it should
|
/external/chromium_org/remoting/host/ |
pairing_registry_delegate_win_unittest.cc | 56 PairingRegistry::Pairing pairing1(base::Time::Now(), "xxx", "xxx", "xxx"); 57 PairingRegistry::Pairing pairing2(base::Time::Now(), "yyy", "yyy", "yyy"); 68 // Delete the first pairing. 71 // Verify that there is only one pairing left. 72 EXPECT_EQ(delegate->Load(pairing1.client_id()), PairingRegistry::Pairing()); 80 EXPECT_EQ(PairingRegistry::Pairing::CreateFromValue(*json), pairing2); 96 PairingRegistry::Pairing pairing(base::Time::Now(), "xxx", "xxx", "xxx"); 97 EXPECT_TRUE(save_delegate->Save(pairing)); 98 EXPECT_EQ(load_delegate->Load(pairing.client_id()), pairing) [all...] |
pairing_registry_delegate_linux_unittest.cc | 44 PairingRegistry::Pairing pairing1(base::Time::Now(), "xxx", "xxx", "xxx"); 45 PairingRegistry::Pairing pairing2(base::Time::Now(), "yyy", "yyy", "yyy"); 56 // Delete the first pairing. 59 // Verify that there is only one pairing left. 60 EXPECT_EQ(delegate->Load(pairing1.client_id()), PairingRegistry::Pairing()); 68 EXPECT_EQ(PairingRegistry::Pairing::CreateFromValue(*json), pairing2); 84 PairingRegistry::Pairing pairing(base::Time::Now(), "xxx", "xxx", "xxx"); 85 EXPECT_TRUE(save_delegate->Save(pairing)); 86 EXPECT_EQ(load_delegate->Load(pairing.client_id()), pairing) [all...] |
pairing_registry_delegate_linux.cc | 20 // The pairing registry path relative to the configuration directory. 41 // Enumerate all pairing files in the pairing registry. 48 // Read the JSON containing pairing data. 67 // Delete all pairing files in the pairing registry. 82 PairingRegistry::Pairing PairingRegistryDelegateLinux::Load( 91 scoped_ptr<base::Value> pairing( 93 if (!pairing) { 94 LOG(WARNING) << "Failed to load pairing information: " << error_messag [all...] |
pairing_registry_delegate_win.cc | 138 PairingRegistry::Pairing pairing = Load(WideToUTF8(value_name)); local 139 if (pairing.is_valid()) 140 pairings->Append(pairing.ToValue().release()); 168 PairingRegistry::Pairing PairingRegistryDelegateWin::Load( 174 scoped_ptr<base::DictionaryValue> pairing = ReadValue(unprivileged_, local 176 if (!pairing) 177 return PairingRegistry::Pairing(); 184 return PairingRegistry::Pairing(); 187 pairing->MergeDictionary(secret.get()) [all...] |
pairing_registry_delegate_win.h | 22 // Stores client pairing information in Windows registry. Two separate registry 27 // - |unprivileged| - contains the rest of pairing state. 38 // Passes the root keys to be used to access the pairing registry store. 46 virtual protocol::PairingRegistry::Pairing Load( 48 virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) OVERRIDE;
|
pairing_registry_delegate.h | 17 // Returns a platform-specific pairing registry delegate that will save to 18 // permanent storage. Returns NULL on platforms that don't support pairing.
|
pairing_registry_delegate_linux.h | 27 virtual protocol::PairingRegistry::Pairing Load( 29 virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) OVERRIDE;
|
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
bluetooth_pair_device_overlay.html | 1 <div id="bluetooth-pairing" class="page" hidden> 4 <div id="bluetooth-pairing-message-area" class="content-area"> 5 <div id="bluetooth-pairing-message-contents"> 6 <div id="bluetooth-pairing-instructions"></div> 7 <div id="bluetooth-pairing-passkey-display" hidden></div> 8 <div id="bluetooth-pairing-passkey-entry" hidden> 11 <div id="bluetooth-pairing-pincode-entry" hidden>
|
bluetooth_pair_device_overlay.js | 9 * Enumeration of possible states during pairing. The value associated with 14 var PAIRING = { 23 DISMISSED: 'bluetoothPairingDismissed', // pairing dismissed(succeeded or 32 var ELEMENTS = ['bluetooth-pairing-passkey-display', 33 'bluetooth-pairing-passkey-entry', 34 'bluetooth-pairing-pincode-entry', 42 * Encapsulated handling of the Bluetooth device pairing page. 49 'bluetooth-pairing'); 65 * pairing: string|undefined, 96 else if (!$('bluetooth-pairing-passkey-entry').hidden [all...] |
bluetooth_add_device_overlay.js | 47 device.pairing = 'bluetoothStartConnecting'; 56 // that can be paired or remembered. Devices not supporting pairing will 61 // pairing attempt will fail. Paired devices could appear in this list 62 // shortly after the pairing initiated in another window finishes. 64 // of a pairing or connection. Another attempt to pair before the
|
bluetooth.css | 71 change size during the pairing process as the message changes. Sized 73 #bluetooth-pairing-message-area { 82 #bluetooth-pairing-message-contents { 87 #bluetooth-pairing-instructions, 88 #bluetooth-pairing-passkey-display, 89 #bluetooth-pairing-passkey-entry, 90 #bluetooth-pairing-pincode-entry, 96 #bluetooth-pairing-instructions { 100 #bluetooth-pairing-passkey-display, 101 #bluetooth-pairing-passkey-entry [all...] |
/external/chromium_org/device/bluetooth/ |
bluetooth_out_of_band_pairing_data.h | 15 // Pairing. See 18 // Simple Pairing Hash C. 21 // Simple Pairing Randomizer R.
|
bluetooth_device.h | 25 // performed on the remove device such as pairing, connection and disconnection. 74 // TODO(keybuk): add observers for pairing and connection. 77 // Interface for negotiating pairing of bluetooth devices. 89 // for which there is no automatic pairing or special handling. 100 // passkey-less pairing. 106 // will be called to dismiss the display once pairing is complete or 118 // called to dismiss the display once pairing is complete or cancelled. 128 // of a key entered on the device |device| while pairing with the device 134 // on every pairing process that requires a PIN code or a Passkey because 199 // Indicates whether the device is known to support pairing based on it [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
browser_options.js | 39 * Handles addBluetoothDevice call, display the Bluetooth pairing overlay 40 * for the pairing device. 44 * pairing: string | undefined 50 // One device can be in the process of pairing. If found, display 51 // the Bluetooth pairing overlay. 52 if (device.pairing)
|
bluetooth_pair_device.css | 9 #bluetooth-pairing {
|
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
bluetooth_options_handler.cc | 40 // |SendDeviceNotification| may include a pairing parameter whose value 102 // Device connecting and pairing. 267 // PIN code or Passkey entry during the pairing process. 292 LOG(WARNING) << "Auth token supplied after pairing ended: " << address 296 // Determine if the device supports pairing: 312 // Cancel pairing. 313 VLOG(1) << "Cancel pairing: " << address; 317 VLOG(1) << "Confirm pairing: " << address; 321 VLOG(1) << "Reject pairing: " << address; 332 // Disconnect from device and delete pairing information 442 std::string pairing; local [all...] |
/external/bluetooth/bluedroid/stack/include/ |
smp_api.h | 34 #define SMP_SEC_REQUEST_EVT 2 /* SMP pairing request */ 42 /* pairing failure reason code */ 160 /* Simple Pairing Events. Called by the stack when Simple Pairing related 216 ** Description This function is called to start a SMP pairing. 226 ** Description This function is called to cancel a SMP pairing. 228 ** Returns TRUE - pairing cancelled 268 ** Simple Pairing in response to BTM_SP_RMT_OOB_EVT 272 ** p_data - simple pairing Randomizer C.
|
/external/bluetooth/bluedroid/bta/include/ |
bta_dm_co.h | 62 ** of the local device for the Simple Pairing process 81 ** of the peer device for the Simple Pairing process 114 ** data of the local device for the Simple Pairing process 117 ** c - Simple Pairing Hash C 118 ** r - Simple Pairing Randomnizer R 130 ** data for the remote device for the Simple Pairing process 211 ** before SMP pairing gets going. 253 ** before SMP pairing gets going.
|