Searched refs:LeDevice (Results 1 – 5 of 5) sorted by relevance
/system/bt/gd/storage/ |
D | le_device.h | 30 class LeDevice { 32 LeDevice(ConfigCache* config, ConfigCache* memory_only_config, std::string section); 35 LeDevice(LeDevice&& other) noexcept = default; 36 LeDevice& operator=(LeDevice&& other) noexcept = default; 39 LeDevice(const LeDevice& other) noexcept = default; 40 LeDevice& operator=(const LeDevice& other) noexcept = default; 43 bool operator==(const LeDevice& other) const { 46 bool operator!=(const LeDevice& other) const { 49 bool operator<(const LeDevice& other) const { 52 bool operator>(const LeDevice& rhs) const { [all …]
|
D | le_device.cc | 33 const std::unordered_set<std::string_view> LeDevice::kLinkKeyProperties = { 36 LeDevice::LeDevice(ConfigCache* config, ConfigCache* memory_only_config, std::string section) in LeDevice() function in bluetooth::storage::LeDevice 39 Device LeDevice::Parent() { in Parent() 43 std::string LeDevice::ToLogString() const { in ToLogString() 47 bool LeDevice::IsPaired() const { in IsPaired()
|
D | le_device_test.cc | 33 using bluetooth::storage::LeDevice; 40 LeDevice device(&config, &memory_only_config, address.ToString()); in TEST() 48 LeDevice device(&config, &memory_only_config, address.ToString()); in TEST() 60 LeDevice device1(&config, &memory_only_config, address.ToString()); in TEST() 61 LeDevice device2(&config, &memory_only_config, address.ToString()); in TEST() 64 LeDevice device3(&config, &memory_only_config, address3.ToString()); in TEST()
|
D | device.cc | 95 LeDevice Device::Le() { in Le() 99 return LeDevice(config_, memory_only_config_, section_); in Le()
|
D | device.h | 38 class LeDevice; variable 162 LeDevice Le();
|