Home | History | Annotate | Download | only in compile

Lines Matching defs:outputPath

108     std::string outputPath;
186 const std::string& outputPath) {
236 if (!writer->startEntry(outputPath, 0)) {
237 context->getDiagnostics()->error(DiagMessage(outputPath) << "failed to open");
248 context->getDiagnostics()->error(DiagMessage(outputPath) << "failed to write");
254 context->getDiagnostics()->error(DiagMessage(outputPath) << "failed to finish entry");
260 static bool writeHeaderAndBufferToWriter(const StringPiece& outputPath, const ResourceFile& file,
264 if (!writer->startEntry(outputPath, 0)) {
265 diag->error(DiagMessage(outputPath) << "failed to open file");
281 diag->error(DiagMessage(outputPath) << "failed to write data");
288 diag->error(DiagMessage(outputPath) << "failed to finish writing data");
294 static bool writeHeaderAndMmapToWriter(const StringPiece& outputPath, const ResourceFile& file,
298 if (!writer->startEntry(outputPath, 0)) {
299 diag->error(DiagMessage(outputPath) << "failed to open file");
314 diag->error(DiagMessage(outputPath) << "failed to write data");
320 diag->error(DiagMessage(outputPath) << "failed to finish writing data");
328 const std::string& outputPath) {
365 if (!writeHeaderAndBufferToWriter(outputPath, xmlRes->file, buffer, writer,
374 const std::string& outputPath) {
394 if (!writeHeaderAndBufferToWriter(outputPath, resFile, buffer, writer,
403 const std::string& outputPath) {
417 if (!writeHeaderAndMmapToWriter(outputPath, resFile, f.value(), writer,
472 .requiredFlag("-o", "Output path", &options.outputPath)
500 archiveWriter = createZipFileArchiveWriter(context.getDiagnostics(), options.outputPath);
516 archiveWriter = createDirectoryArchiveWriter(context.getDiagnostics(), options.outputPath);