Searched refs:ClassicDevice (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | classic_device_test.cc | 29 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() 93 …ClassicDevice device1(smaller_config_ptr, smaller_memory_only_config_ptr, smaller_address.ToString… in TEST() 94 …ClassicDevice device2(larger_config_ptr, larger_memory_only_config_ptr, larger_address.ToString()); in TEST() 99 …ClassicDevice device1(larger_config_ptr, smaller_memory_only_config_ptr, smaller_address.ToString(… in TEST() 100 …ClassicDevice device2(smaller_config_ptr, larger_memory_only_config_ptr, larger_address.ToString()… in TEST() [all …]
|
D | classic_device.h | 31 class ClassicDevice { 33 ClassicDevice(ConfigCache* config, ConfigCache* memory_only_config, std::string section); 36 ClassicDevice(ClassicDevice&& other) noexcept = default; 37 ClassicDevice& operator=(ClassicDevice&& other) noexcept = default; 40 ClassicDevice(const ClassicDevice& other) noexcept = default; 41 ClassicDevice& operator=(const ClassicDevice& other) noexcept = default; 44 bool operator==(const ClassicDevice& other) const { 47 bool operator!=(const ClassicDevice& other) const { 50 bool operator<(const ClassicDevice& other) const { 59 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 | device.cc | 106 ClassicDevice Device::Classic() { in Classic() 112 return ClassicDevice(config_, memory_only_config_, section_); in Classic()
|
D | device.h | 41 class ClassicDevice; variable 166 ClassicDevice Classic();
|