Searched refs:ClassicDevice (Results 1 – 5 of 5) sorted by relevance
/system/bt/gd/storage/ |
D | classic_device.h | 32 class ClassicDevice { 34 ClassicDevice(ConfigCache* config, ConfigCache* memory_only_config, std::string section); 37 ClassicDevice(ClassicDevice&& other) noexcept = default; 38 ClassicDevice& operator=(ClassicDevice&& other) noexcept = default; 41 ClassicDevice(const ClassicDevice& other) noexcept = default; 42 ClassicDevice& operator=(const ClassicDevice& other) noexcept = default; 45 bool operator==(const ClassicDevice& other) const { 48 bool operator!=(const ClassicDevice& other) const { 51 bool operator<(const ClassicDevice& other) const { 54 bool operator>(const ClassicDevice& rhs) const { [all …]
|
D | classic_device.cc | 26 const std::unordered_set<std::string_view> ClassicDevice::kLinkKeyProperties = {"LinkKey"}; 28 ClassicDevice::ClassicDevice(ConfigCache* config, ConfigCache* memory_only_config, std::string sect… in ClassicDevice() function in bluetooth::storage::ClassicDevice 31 Device ClassicDevice::Parent() { in Parent() 35 std::string ClassicDevice::ToLogString() const { in ToLogString() 39 hci::Address ClassicDevice::GetAddress() const { in GetAddress() 46 bool ClassicDevice::IsPaired() const { in IsPaired()
|
D | classic_device_test.cc | 31 using bluetooth::storage::ClassicDevice; 40 ClassicDevice device(&config, &memory_only_config, address.ToString()); in TEST() 48 ClassicDevice device(&config, &memory_only_config, address.ToString()); in TEST() 60 ClassicDevice device1(&config, &memory_only_config, address.ToString()); in TEST() 61 ClassicDevice device2(&config, &memory_only_config, address.ToString()); in TEST() 64 ClassicDevice device3(&config, &memory_only_config, address3.ToString()); in TEST()
|
D | device.cc | 102 ClassicDevice Device::Classic() { in Classic() 106 return ClassicDevice(config_, memory_only_config_, section_); in Classic()
|
D | device.h | 39 class ClassicDevice; variable 158 ClassicDevice Classic();
|