Home
last modified time | relevance | path

Searched refs:config_ (Results 1 – 11 of 11) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dle_device.h43 …return config_ == other.config_ && memory_only_config_ == other.memory_only_config_ && section_ ==…
49 if (config_ != other.config_) {
50 return config_ < other.config_;
80 ConfigCache* config_;
108 std::size_t pointer_hash_1 = std::hash<bluetooth::storage::ConfigCache*>{}(val.config_);
109 std::size_t pointer_hash_2 = std::hash<bluetooth::storage::ConfigCache*>{}(val.config_);
Dclassic_device.h45 …return config_ == other.config_ && memory_only_config_ == other.memory_only_config_ && section_ ==…
51 if (config_ != other.config_) {
52 return config_ < other.config_;
85 ConfigCache* config_;
106 std::size_t pointer_hash_1 = std::hash<bluetooth::storage::ConfigCache*>{}(val.config_);
107 std::size_t pointer_hash_2 = std::hash<bluetooth::storage::ConfigCache*>{}(val.config_);
Ddevice.h51 …return ConfigCacheHelper(*config_).Get<RETURN_TYPE>(section_, PROPERTY_KEY); …
71 …return ConfigCacheHelper(*config_).Get<RETURN_TYPE>(section_, PROPERTY_KEY); …
131 …return config_ == other.config_ && memory_only_config_ == other.memory_only_config_ && section_ ==…
137 if (config_ != other.config_) {
138 return config_ < other.config_;
181 ConfigCache* config_;
222 std::size_t pointer_hash_1 = std::hash<bluetooth::storage::ConfigCache*>{}(val.config_);
223 std::size_t pointer_hash_2 = std::hash<bluetooth::storage::ConfigCache*>{}(val.config_);
Dle_device.cc37 : config_(config), memory_only_config_(memory_only_config), section_(std::move(section)) {} in LeDevice()
40 return Device(config_, memory_only_config_, section_); in Parent()
49 if (!config_->IsPersistentSection(section_)) { in IsPaired()
52 return config_->HasAtLeastOneMatchingPropertiesInSection(section_, kLinkKeyProperties); in IsPaired()
Dclassic_device.cc29 : config_(config), memory_only_config_(memory_only_config), section_(std::move(section)) {} in ClassicDevice()
32 return Device(config_, memory_only_config_, section_); in Parent()
48 if (!config_->IsPersistentSection(section_)) { in IsPaired()
51 return config_->HasAtLeastOneMatchingPropertiesInSection(section_, kLinkKeyProperties); in IsPaired()
Dmutation.cc25 : config_(config), memory_only_config_(memory_only_config) { in Mutation()
26 log::assert_that(config_ != nullptr, "assert failed: config_ != nullptr"); in Mutation()
47 config_->Commit(normal_config_entries_); in Commit()
Ddevice.cc83 : config_(config), memory_only_config_(memory_only_config), section_(std::move(section)) {} in Device()
86 return config_->HasSection(section_); in Exists()
103 return LeDevice(config_, memory_only_config_, section_); in Le()
112 return ClassicDevice(config_, memory_only_config_, section_); in Classic()
Dmutation.h35 ConfigCache* config_;
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/
Dsignalling_manager.h50 std::vector<std::unique_ptr<ConfigurationOption>> config_; member
Dsignalling_manager.cc958 auto config = std::move(command_just_sent_.config_); in handle_send_next_command()
/packages/modules/Bluetooth/system/gd/hci/facade/
Dle_advertising_manager_facade.cc180 LeAdvertiser(hci::AdvertisingConfig config) : config_(std::move(config)) {} in LeAdvertiser()
196 hci::AdvertisingConfig config_; member in bluetooth::hci::facade::LeAdvertiser