Home
last modified time | relevance | path

Searched refs:BluetoothUUID (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/device/bluetooth/
Dbluetooth_uuid.cc32 BluetoothUUID::Format* format) { in GetCanonicalUuid()
36 *format = BluetoothUUID::kFormatInvalid; in GetCanonicalUuid()
63 *format = BluetoothUUID::kFormat16Bit; in GetCanonicalUuid()
66 *format = BluetoothUUID::kFormat32Bit; in GetCanonicalUuid()
69 *format = BluetoothUUID::kFormat128Bit; in GetCanonicalUuid()
76 BluetoothUUID::BluetoothUUID(const std::string& uuid) { in BluetoothUUID() function in device::BluetoothUUID
81 BluetoothUUID::BluetoothUUID(GUID uuid) { in BluetoothUUID() function in device::BluetoothUUID
96 BluetoothUUID::BluetoothUUID() : format_(kFormatInvalid) { in BluetoothUUID() function in device::BluetoothUUID
99 BluetoothUUID::~BluetoothUUID() = default;
103 GUID BluetoothUUID::GetCanonicalValueAsGUID(base::StringPiece uuid) { in GetCanonicalValueAsGUID()
[all …]
Dbluetooth_uuid.h26 class DEVICE_BLUETOOTH_EXPORT BluetoothUUID {
50 explicit BluetoothUUID(const std::string& uuid);
55 explicit BluetoothUUID(GUID uuid);
62 BluetoothUUID();
63 virtual ~BluetoothUUID();
93 bool operator<(const BluetoothUUID& uuid) const;
96 bool operator==(const BluetoothUUID& uuid) const;
97 bool operator!=(const BluetoothUUID& uuid) const;
114 PrintTo(const BluetoothUUID& uuid, std::ostream* out);
117 size_t operator()(const device::BluetoothUUID& uuid) const { in operator()