Lines Matching refs:output_path

152                          const std::string& output_path) {  in CompileTable()  argument
196 if (!writer->StartEntry(output_path, 0)) { in CompileTable()
197 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to open"); in CompileTable()
210 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to write"); in CompileTable()
216 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to finish entry"); in CompileTable()
286 static bool WriteHeaderAndDataToWriter(StringPiece output_path, const ResourceFile& file, in WriteHeaderAndDataToWriter() argument
291 if (!writer->StartEntry(output_path, 0)) { in WriteHeaderAndDataToWriter()
292 diag->Error(android::DiagMessage(output_path) << "failed to open file"); in WriteHeaderAndDataToWriter()
306 diag->Error(android::DiagMessage(output_path) << "failed to write entry data"); in WriteHeaderAndDataToWriter()
312 diag->Error(android::DiagMessage(output_path) << "failed to finish writing data"); in WriteHeaderAndDataToWriter()
318 static bool FlattenXmlToOutStream(StringPiece output_path, const xml::XmlResource& xmlres, in FlattenXmlToOutStream() argument
330 diag->Error(android::DiagMessage(output_path) << "failed to write entry data"); in FlattenXmlToOutStream()
355 const std::string& output_path) { in CompileXml() argument
394 if (!writer->StartEntry(output_path, 0)) { in CompileXml()
395 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to open file"); in CompileXml()
408 if (!FlattenXmlToOutStream(output_path, *xmlres, &container_writer, in CompileXml()
414 if (!FlattenXmlToOutStream(output_path, *inline_xml_doc, &container_writer, in CompileXml()
422 context->GetDiagnostics()->Error(android::DiagMessage(output_path) in CompileXml()
456 const std::string& output_path) { in CompilePng() argument
559 return WriteHeaderAndDataToWriter(output_path, res_file, &buffer_in, writer, in CompilePng()
565 const std::string& output_path) { in CompileFile() argument
584 return WriteHeaderAndDataToWriter(output_path, res_file, data.get(), writer, in CompileFile()
801 file::FileType output_file_type = file::GetFileType(options_.output_path); in Action()
803 archive_writer = CreateDirectoryArchiveWriter(context.GetDiagnostics(), options_.output_path); in Action()
805 archive_writer = CreateZipFileArchiveWriter(context.GetDiagnostics(), options_.output_path); in Action()