Home | History | Annotate | Download | only in cloud

Lines Matching refs:subkey

68                           const std::string& subkey,
81 return VerifyKeyPathAndGetSubkeyPath(key, true, subkey, &subkey_path) &&
87 const std::string& subkey,
92 if (!VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path) ||
113 std::string subkey;
118 Base64Decode(encoded_subkey, &subkey) &&
120 (*contents)[subkey].swap(data);
125 void ResourceCache::Delete(const std::string& key, const std::string& subkey) {
128 if (VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path))
131 // call below deletes the directory representing |key| if its last subkey was
190 const std::string& subkey,
195 !Base64Encode(subkey, &encoded)) {