Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/storage/
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()
93LeDevice device1(smaller_config_ptr, smaller_memory_only_config_ptr, smaller_address.ToString()); in TEST()
94 LeDevice device2(larger_config_ptr, larger_memory_only_config_ptr, larger_address.ToString()); in TEST()
99 LeDevice device1(larger_config_ptr, smaller_memory_only_config_ptr, smaller_address.ToString()); in TEST()
100 LeDevice device2(smaller_config_ptr, larger_memory_only_config_ptr, larger_address.ToString()); in TEST()
[all …]
Dle_device.h29 class LeDevice {
31 LeDevice(ConfigCache* config, ConfigCache* memory_only_config, std::string section);
34 LeDevice(LeDevice&& other) noexcept = default;
35 LeDevice& operator=(LeDevice&& other) noexcept = default;
38 LeDevice(const LeDevice& other) noexcept = default;
39 LeDevice& operator=(const LeDevice& other) noexcept = default;
42 bool operator==(const LeDevice& other) const {
45 bool operator!=(const LeDevice& other) const {
48 bool operator<(const LeDevice& other) const {
57 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()
Ddevice.cc97 LeDevice Device::Le() { in Le()
103 return LeDevice(config_, memory_only_config_, section_); in Le()
Ddevice.h40 class LeDevice; variable
170 LeDevice Le();
/packages/modules/Bluetooth/system/main/shim/
Dle_scanning_manager.cc815 bluetooth::storage::LeDevice le_device = device.Le(); in handle_remote_properties()