Searched refs:AdapterConfig (Results 1 – 5 of 5) sorted by relevance
/system/bt/gd/storage/ |
D | adapter_config.h | 28 class AdapterConfig { 30 AdapterConfig(ConfigCache* config, ConfigCache* memory_only_config, std::string section); 33 AdapterConfig(AdapterConfig&& other) noexcept = default; 34 AdapterConfig& operator=(AdapterConfig&& other) noexcept = default; 37 AdapterConfig(const AdapterConfig& other) noexcept = default; 38 AdapterConfig& operator=(const AdapterConfig& other) noexcept = default; 41 bool operator==(const AdapterConfig& other) const { 44 bool operator!=(const AdapterConfig& other) const { 47 bool operator<(const AdapterConfig& other) const { 50 bool operator>(const AdapterConfig& rhs) const { [all …]
|
D | adapter_config_test.cc | 28 using bluetooth::storage::AdapterConfig; 36 AdapterConfig adapter_config(&config, &memory_only_config, "Adapter"); in TEST() 44 AdapterConfig adapter_config(&config, &memory_only_config, "Adapter"); in TEST() 56 AdapterConfig adapter_config_1(&config, &memory_only_config, "Adapter"); in TEST() 57 AdapterConfig adapter_config_2(&config, &memory_only_config, "Adapter"); in TEST() 60 AdapterConfig adapter_config_3(&config, &memory_only_config_2, "Adapter"); in TEST()
|
D | adapter_config.cc | 22 AdapterConfig::AdapterConfig(ConfigCache* config, ConfigCache* memory_only_config, std::string sect… in AdapterConfig() function in bluetooth::storage::AdapterConfig
|
D | storage_module.h | 110 AdapterConfig GetAdapterConfig();
|
D | storage_module.cc | 221 AdapterConfig StorageModule::GetAdapterConfig() { in GetAdapterConfig() 223 return AdapterConfig(&pimpl_->cache_, &pimpl_->memory_only_cache_, kAdapterSection); in GetAdapterConfig()
|