Home
last modified time | relevance | path

Searched refs:ClassicDevice (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dclassic_device_test.cc29 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()
93ClassicDevice device1(smaller_config_ptr, smaller_memory_only_config_ptr, smaller_address.ToString… in TEST()
94ClassicDevice device2(larger_config_ptr, larger_memory_only_config_ptr, larger_address.ToString()); in TEST()
99ClassicDevice device1(larger_config_ptr, smaller_memory_only_config_ptr, smaller_address.ToString(… in TEST()
100ClassicDevice device2(smaller_config_ptr, larger_memory_only_config_ptr, larger_address.ToString()… in TEST()
[all …]
Dclassic_device.h31 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 …]
Dclassic_device.cc26 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()
Ddevice.cc106 ClassicDevice Device::Classic() { in Classic()
112 return ClassicDevice(config_, memory_only_config_, section_); in Classic()
Ddevice.h41 class ClassicDevice; variable
166 ClassicDevice Classic();