Home
last modified time | relevance | path

Searched refs:handle_to_key_map_ (Results 1 – 2 of 2) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/chromeos/services/device_sync/
H A Dcryptauth_key_bundle.cc142 handle_to_key_map_.begin(), handle_to_key_map_.end(), in GetActiveKey()
147 if (it == handle_to_key_map_.end()) in GetActiveKey()
160 handle_to_key_map_.insert_or_assign(key.handle(), key); in AddKey()
164 auto it = handle_to_key_map_.find(handle); in SetActiveKey()
165 DCHECK(it != handle_to_key_map_.end()); in SetActiveKey()
171 DCHECK(base::Contains(handle_to_key_map_, handle)); in DeleteKey()
172 handle_to_key_map_.erase(handle); in DeleteKey()
176 for (auto& handle_key_pair : handle_to_key_map_) in DeactivateKeys()
188 handle_to_key_map_.begin(), handle_to_key_map_.end(), in AsDictionary()
209 handle_to_key_map_ == other.handle_to_key_map_ && in operator ==()
H A Dcryptauth_key_bundle.h74 return handle_to_key_map_; in handle_to_key_map()
112 base::flat_map<std::string, CryptAuthKey> handle_to_key_map_; variable