Lines Matching defs:content
72 vector<u8> content;
73 bool ok = fileStore.Get(req.path, content, req.removeAfter);
77 res.data = std::move(content);
185 bool Parent::SetFile (const string& name, const std::vector<u8>& content)
187 return impl->fileStore.Set(name, content);
192 vector<u8> content;
193 bool result = impl->fileStore.Get(name, content, false);
194 if (result) return content;
219 bool Child::SetFile (const string& name, const std::vector<u8>& content)
223 request.data = content;