Searched refs:section_ (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | device.h | 51 …return ConfigCacheHelper(*config_).Get<RETURN_TYPE>(section_, PROPERTY_KEY); … 54 …return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY… 57 …return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY); … 71 …return ConfigCacheHelper(*config_).Get<RETURN_TYPE>(section_, PROPERTY_KEY); … 75 …return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY… 78 …return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY); … 92 …return ConfigCacheHelper(*memory_only_config_).Get<RETURN_TYPE>(section_, PROPERTY_KEY); … 95 …return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::MEMORY_ONLY, section_, PROPERT… 98 …return MutationEntry::Remove(MutationEntry::PropertyType::MEMORY_ONLY, section_, PROPERTY_KEY); … 131 …== other.config_ && memory_only_config_ == other.memory_only_config_ && section_ == other.section_; [all …]
|
D | device.cc | 83 : config_(config), memory_only_config_(memory_only_config), section_(std::move(section)) {} in Device() 86 return config_->HasSection(section_); in Exists() 90 return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_); in RemoveFromConfig() 94 return MutationEntry::Remove(MutationEntry::PropertyType::MEMORY_ONLY, section_); in RemoveFromTempConfig() 103 return LeDevice(config_, memory_only_config_, section_); in Le() 112 return ClassicDevice(config_, memory_only_config_, section_); in Classic() 117 auto addr = hci::Address::FromString(section_); in GetAddress() 123 return section_; in ToLogString()
|
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() 36 return section_; in ToLogString() 41 auto addr = hci::Address::FromString(section_); in GetAddress() 48 if (!config_->IsPersistentSection(section_)) { in IsPaired() 51 return config_->HasAtLeastOneMatchingPropertiesInSection(section_, kLinkKeyProperties); in IsPaired()
|
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() 44 return section_; in ToLogString() 49 if (!config_->IsPersistentSection(section_)) { in IsPaired() 52 return config_->HasAtLeastOneMatchingPropertiesInSection(section_, kLinkKeyProperties); in IsPaired()
|
D | le_device.h | 43 …== other.config_ && memory_only_config_ == other.memory_only_config_ && section_ == other.section_; 55 return section_ < other.section_; 82 std::string section_; variable 110 std::size_t addr_hash = std::hash<std::string>{}(val.section_);
|
D | classic_device.h | 45 …== other.config_ && memory_only_config_ == other.memory_only_config_ && section_ == other.section_; 57 return section_ < other.section_; 87 std::string section_; variable 108 std::size_t addr_hash = std::hash<std::string>{}(val.section_);
|
/packages/modules/Bluetooth/system/test/mock/ |
D | mock_osi_config.h | 321 std::list<section_t> section_; member 324 return section_.begin();
|