Home | History | Annotate | Download | only in util

Lines Matching refs:subkey

83   // Map of subkey names to the corresponding KeyData.
195 LOG(ERROR) << "Failed getting name of subkey " << i
206 RegKey subkey;
209 result = subkey.Open(key.Handle(), it->first.c_str(), kKeyReadNoNotify);
211 LOG(ERROR) << "Failed opening subkey \"" << it->first
215 if (!it->second.Initialize(subkey)) {
216 LOG(ERROR) << "Failed backing up subkey \"" << it->first << "\"";
247 RegKey subkey;
252 result = subkey.Create(key->Handle(), name.c_str(), KEY_WRITE);
254 LOG(ERROR) << "Failed creating subkey \"" << name << "\", result: "
258 if (!it->second.WriteTo(&subkey)) {
259 LOG(ERROR) << "Failed writing subkey \"" << name << "\", result: "