Searched refs:memory_only_config_ (Results 1 – 8 of 8) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | le_device.h | 43 …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
|
D | classic_device.h | 45 …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
|
D | device.h | 92 …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
|
D | mutation.cc | 25 : 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()
|
D | device.cc | 83 : 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()
|
D | le_device.cc | 37 : config_(config), memory_only_config_(memory_only_config), section_(std::move(section)) {} in LeDevice() 40 return Device(config_, memory_only_config_, section_); in Parent()
|
D | classic_device.cc | 29 : config_(config), memory_only_config_(memory_only_config), section_(std::move(section)) {} in ClassicDevice() 32 return Device(config_, memory_only_config_, section_); in Parent()
|
D | mutation.h | 36 ConfigCache* memory_only_config_; variable
|