Home | History | Annotate | Download | only in system

Lines Matching refs:zip_content

204   // Loads compressed logs and writes into |zip_content|.
206 std::string* zip_content);
220 std::string* zip_content);
261 // |zip_content| is passed to |request|.
264 std::string* zip_content);
282 std::string* zip_content)
285 zip_content_(zip_content) {
319 std::string* zip_content = NULL;
322 zip_content = new std::string();
323 LoadCompressedLogs(zip_file, zip_content);
341 // request->ForwardResult(logs, zip_content).
343 handler(new SyslogsMemoryHandler(callback, logs, zip_content));
349 std::string* zip_content) {
350 DCHECK(zip_content);
351 if (!file_util::ReadFileToString(zip_file, zip_content)) {
380 std::string* zip_content) {
385 delete zip_content;
391 callback.Run(logs, zip_content);
393 origin_runner->PostTask(FROM_HERE, base::Bind(callback, logs, zip_content));