Lines Matching refs:Device
39 Device::ConfigKeyAddressType key_address_type) { in GetConfigSection()
45 case Device::ConfigKeyAddressType::LEGACY_KEY_ADDRESS: in GetConfigSection()
46 case Device::ConfigKeyAddressType::CLASSIC_ADDRESS: in GetConfigSection()
48 case Device::ConfigKeyAddressType::LE_IDENTITY_ADDRESS: in GetConfigSection()
56 case Device::ConfigKeyAddressType::LE_LEGACY_PSEUDO_ADDRESS: in GetConfigSection()
73 const std::unordered_set<std::string_view> Device::kLinkKeyProperties = {
76 Device::Device(ConfigCache* config, ConfigCache* memory_only_config, in Device() function in bluetooth::storage::Device
78 : Device(config, memory_only_config, GetConfigSection(config, key_address, key_address_type)) {} in Device()
80 Device::Device(ConfigCache* config, ConfigCache* memory_only_config, std::string section) in Device() function in bluetooth::storage::Device
83 bool Device::Exists() { return config_->HasSection(section_); } in Exists()
85 MutationEntry Device::RemoveFromConfig() { in RemoveFromConfig()
89 MutationEntry Device::RemoveFromTempConfig() { in RemoveFromTempConfig()
93 LeDevice Device::Le() { in Le()
102 ClassicDevice Device::Classic() { in Classic()
111 hci::Address Device::GetAddress() const { in GetAddress()
118 std::string Device::ToLogString() const { return section_; } in ToLogString()