Home
last modified time | relevance | path

Searched refs:LeDevice (Results 1 – 6 of 6) sorted by relevance

/system/bt/gd/storage/
Dle_device.h31 class LeDevice {
33 LeDevice(ConfigCache* config, ConfigCache* memory_only_config, std::string section);
36 LeDevice(LeDevice&& other) noexcept = default;
37 LeDevice& operator=(LeDevice&& other) noexcept = default;
40 LeDevice(const LeDevice& other) noexcept = default;
41 LeDevice& operator=(const LeDevice& other) noexcept = default;
44 bool operator==(const LeDevice& other) const {
47 bool operator!=(const LeDevice& other) const {
50 bool operator<(const LeDevice& other) const {
53 bool operator>(const LeDevice& rhs) const {
[all …]
Dle_device.cc33 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()
Dle_device_test.cc31 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()
Ddevice.cc95 LeDevice Device::Le() { in Le()
99 return LeDevice(config_, memory_only_config_, section_); in Le()
Ddevice.h38 class LeDevice; variable
162 LeDevice Le();
/system/bt/main/shim/
Dle_scanning_manager.cc470 bluetooth::storage::LeDevice le_device = device.Le(); in handle_remote_properties()