• Home
  • Raw
  • Download

Lines Matching refs:output_path

175                          const std::string& output_path) {  in CompileTable()  argument
253 if (!writer->StartEntry(output_path, 0)) { in CompileTable()
254 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to open"); in CompileTable()
267 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to write"); in CompileTable()
273 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to finish entry"); in CompileTable()
343 static bool WriteHeaderAndDataToWriter(StringPiece output_path, const ResourceFile& file, in WriteHeaderAndDataToWriter() argument
348 if (!writer->StartEntry(output_path, 0)) { in WriteHeaderAndDataToWriter()
349 diag->Error(android::DiagMessage(output_path) << "failed to open file"); in WriteHeaderAndDataToWriter()
363 diag->Error(android::DiagMessage(output_path) << "failed to write entry data"); in WriteHeaderAndDataToWriter()
369 diag->Error(android::DiagMessage(output_path) << "failed to finish writing data"); in WriteHeaderAndDataToWriter()
375 static bool FlattenXmlToOutStream(StringPiece output_path, const xml::XmlResource& xmlres, in FlattenXmlToOutStream() argument
387 diag->Error(android::DiagMessage(output_path) << "failed to write entry data"); in FlattenXmlToOutStream()
451 const std::string& output_path) { in CompileXml() argument
506 if (!writer->StartEntry(output_path, 0)) { in CompileXml()
507 context->GetDiagnostics()->Error(android::DiagMessage(output_path) << "failed to open file"); in CompileXml()
520 if (!FlattenXmlToOutStream(output_path, *xmlres, &container_writer, in CompileXml()
526 if (!FlattenXmlToOutStream(output_path, *inline_xml_doc, &container_writer, in CompileXml()
534 context->GetDiagnostics()->Error(android::DiagMessage(output_path) in CompileXml()
568 const std::string& output_path) { in CompilePng() argument
695 return WriteHeaderAndDataToWriter(output_path, res_file, &buffer_in, writer, in CompilePng()
701 const std::string& output_path) { in CompileFile() argument
720 return WriteHeaderAndDataToWriter(output_path, res_file, data.get(), writer, in CompileFile()
938 file::FileType output_file_type = file::GetFileType(options_.output_path); in Action()
940 archive_writer = CreateDirectoryArchiveWriter(context.GetDiagnostics(), options_.output_path); in Action()
942 archive_writer = CreateZipFileArchiveWriter(context.GetDiagnostics(), options_.output_path); in Action()