OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CanonicalUuid
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/device/bluetooth/
bluetooth_utils_unittest.cc
11
TEST(BluetoothUtilsTest,
CanonicalUuid
) {
14
bluetooth_utils::
CanonicalUuid
("00001101-0000-1000-8000-00805f9b34fb"));
17
EXPECT_EQ("", bluetooth_utils::
CanonicalUuid
("1101a"));
18
EXPECT_EQ("", bluetooth_utils::
CanonicalUuid
("Z101"));
19
EXPECT_EQ("", bluetooth_utils::
CanonicalUuid
("0000-1101"));
20
EXPECT_EQ("", bluetooth_utils::
CanonicalUuid
("0000Z101"));
22
bluetooth_utils::
CanonicalUuid
("0001101-0000-1000-8000-00805f9b34fb"));
24
bluetooth_utils::
CanonicalUuid
("Z0001101-0000-1000-8000-00805f9b34fb"));
26
bluetooth_utils::
CanonicalUuid
("00001101 0000-1000-8000-00805f9b34fb"));
28
bluetooth_utils::
CanonicalUuid
("00001101-0000:1000-8000-00805f9b34fb"))
[
all
...]
bluetooth_utils.h
25
std::string
CanonicalUuid
(std::string uuid);
bluetooth_device.cc
18
return !bluetooth_utils::
CanonicalUuid
(uuid).empty();
179
std::string canonical_uuid = bluetooth_utils::
CanonicalUuid
(uuid);
184
if (bluetooth_utils::
CanonicalUuid
(*iter) == canonical_uuid)
bluetooth_utils.cc
22
std::string
CanonicalUuid
(std::string uuid) {
bluetooth_service_record_win.cc
74
*uuid = device::bluetooth_utils::
CanonicalUuid
(uuid_hex);
78
*uuid = device::bluetooth_utils::
CanonicalUuid
(uuid_hex);
/external/chromium_org/chrome/common/extensions/permissions/
bluetooth_permission_data.cc
35
std::string canonical_uuid = device::bluetooth_utils::
CanonicalUuid
(uuid_);
36
std::string canonical_param_uuid = device::bluetooth_utils::
CanonicalUuid
(
/external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api.cc
135
uuid_ = device::bluetooth_utils::
CanonicalUuid
(params->profile.uuid);
211
device::bluetooth_utils::
CanonicalUuid
(params->profile.uuid);
398
std::string uuid = device::bluetooth_utils::
CanonicalUuid
(
Completed in 695 milliseconds