Home
last modified time | relevance | path

Searched refs:memory_only_config_ (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dle_device.h43 …return config_ == other.config_ && memory_only_config_ == other.memory_only_config_ && section_ ==…
52 if (memory_only_config_ != other.memory_only_config_) {
53 return memory_only_config_ < other.memory_only_config_;
81 ConfigCache* memory_only_config_; variable
Dclassic_device.h45 …return config_ == other.config_ && memory_only_config_ == other.memory_only_config_ && section_ ==…
54 if (memory_only_config_ != other.memory_only_config_) {
55 return memory_only_config_ < other.memory_only_config_;
86 ConfigCache* memory_only_config_; variable
Ddevice.h92 …return ConfigCacheHelper(*memory_only_config_).Get<RETURN_TYPE>(section_, PROPERTY_KEY); …
131 …return config_ == other.config_ && memory_only_config_ == other.memory_only_config_ && section_ ==…
140 if (memory_only_config_ != other.memory_only_config_) {
141 return memory_only_config_ < other.memory_only_config_;
182 ConfigCache* memory_only_config_; variable
Dmutation.cc25 : config_(config), memory_only_config_(memory_only_config) { in Mutation()
27 log::assert_that(memory_only_config_ != nullptr, "assert failed: memory_only_config_ != nullptr"); in Mutation()
48 memory_only_config_->Commit(memory_only_config_entries_); in Commit()
Ddevice.cc83 : config_(config), memory_only_config_(memory_only_config), section_(std::move(section)) {} in Device()
103 return LeDevice(config_, memory_only_config_, section_); in Le()
112 return ClassicDevice(config_, memory_only_config_, section_); in Classic()
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()
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()
Dmutation.h36 ConfigCache* memory_only_config_; variable