Lines Matching refs:name
61 bool ok = fileStore.Set(req.name, req.data);
185 bool Parent::SetFile (const string& name, const std::vector<u8>& content)
187 return impl->fileStore.Set(name, content);
190 vector<u8> Parent::GetFile (const string& name)
193 bool result = impl->fileStore.Get(name, content, false);
219 bool Child::SetFile (const string& name, const std::vector<u8>& content)
222 request.name = name;
229 std::vector<u8> Child::GetFile (const string& name)
232 request.path = name;