Searched defs:BluetoothUUID (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/device/bluetooth/
H A Dbluetooth_uuid.cc23 BluetoothUUID::Format* format) {
27 *format = BluetoothUUID::kFormatInvalid;
52 *format = BluetoothUUID::kFormat16Bit;
55 *format = BluetoothUUID::kFormat32Bit;
58 *format = BluetoothUUID::kFormat128Bit;
65 BluetoothUUID::BluetoothUUID(const std::string& uuid) { function in class:device::BluetoothUUID
69 BluetoothUUID::BluetoothUUID() : format_(kFormatInvalid) { function in class:device::BluetoothUUID
72 BluetoothUUID
[all...]
H A Dbluetooth_uuid.h17 class BluetoothUUID { class in namespace:device
41 explicit BluetoothUUID(const std::string& uuid);
43 // Default constructor does nothing. Since BluetoothUUID is copyable, this
47 BluetoothUUID();
48 virtual ~BluetoothUUID();
73 bool operator<(const BluetoothUUID& uuid) const;
76 bool operator==(const BluetoothUUID& uuid) const;
77 bool operator!=(const BluetoothUUID& uuid) const;
93 void PrintTo(const BluetoothUUID& uuid, std::ostream* out);

Completed in 118 milliseconds