Home
last modified time | relevance | path

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

/aosp12/system/bt/gd/storage/
H A Dle_device.h31 class LeDevice {
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;
50 bool operator<(const LeDevice& other) const {
53 bool operator>(const LeDevice& rhs) const {
56 bool operator<=(const LeDevice& rhs) const {
59 bool operator>=(const LeDevice& rhs) const {
79 friend std::hash<LeDevice>;
[all …]
H A 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()
H A 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()
H A Ddevice.cc95 LeDevice Device::Le() { in Le()
99 return LeDevice(config_, memory_only_config_, section_); in Le()
H A Ddevice.h38 class LeDevice; variable
162 LeDevice Le();
/aosp12/system/bt/main/shim/
H A Dle_scanning_manager.cc470 bluetooth::storage::LeDevice le_device = device.Le(); in handle_remote_properties()