Searched refs:values_ (Results 1 - 5 of 5) sorted by relevance

/system/update_engine/common/
H A Dfake_prefs.cc92 return values_.find(key) != values_.end();
96 if (values_.find(key) == values_.end())
98 values_.erase(key);
121 auto it = values_.find(key);
122 EXPECT_TRUE(it == values_.end() || it->second.type == type)
130 values_[key].type = PrefConsts<T>::type;
131 values_[key].value.*(PrefConsts<T>::member) = value;
143 auto it = values_
[all...]
H A Dprefs.cc171 auto it = values_.find(key);
172 if (it == values_.end())
180 values_[key] = value;
185 return values_.find(key) != values_.end();
189 auto it = values_.find(key);
190 if (it == values_.end())
192 values_.erase(it);
H A Dfake_prefs.h103 std::map<std::string, PrefTypeValue> values_; member in class:chromeos_update_engine::FakePrefs
H A Dprefs.h158 std::map<std::string, std::string> values_; member in class:chromeos_update_engine::MemoryPrefs::MemoryStorage
/system/tpm/attestation/server/
H A Dpkcs11_key_store_test.cc185 values_[label] = GetValue(attributes, CKA_VALUE);
196 values_.erase(label);
208 std::string value = values_[label];
233 values_[handles_[object_handle]] = GetValue(attributes, CKA_VALUE);
253 for (const auto& item : values_) {
297 std::map<std::string, std::string> values_; // The fake store: label->value member in class:attestation::KeyStoreTest

Completed in 440 milliseconds