HomeSort by relevance Sort by last modified time
    Searched defs:output_path (Results 1 - 13 of 13) sorted by null

  /external/doclava/src/com/google/doclava/
AtLinksNavTree.java 62 String output_path; local
64 output_path = dir + Doclava.libraryRoot + "at_links_navtree.json";
66 output_path = "at_links_navtree.json";
69 ClearPage.write(data, "at_links_navtree.cs", output_path);
  /system/core/libsparse/
append2simg.c 53 char *output_path; local
66 output_path = argv[1];
73 ret = asprintf(&tmp_path, "%s.append2simg", output_path);
79 output = open(output_path, O_RDWR | O_BINARY);
131 ret = rename(tmp_path, output_path);
  /external/v8/src/inspector/build/
generate_protocol_externs.py 104 def generate_protocol_externs(output_path, file1):
107 output_file = open(output_path, "w")
244 output_path = sys.argv[2] variable
246 generate_protocol_externs(output_path, input_path)
  /external/flatbuffers/src/
flatc.cpp 117 std::string output_path; local
138 output_path = flatbuffers::ConCatPathFileName(argv[argi], "");
313 flatbuffers::EnsureDirExists(output_path);
314 if (!params_.generators[i].generate(*parser.get(), output_path, filebase)) {
322 *parser.get(), output_path, *file_it);
329 if (!params_.generators[i].generateGRPC(*parser.get(), output_path,
342 if (opts.proto_mode) GenerateFBS(*parser.get(), output_path, filebase);
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
audio_processing_test.cc 372 std::string output_path = webrtc::test::OutputPath(); local
373 std::string output_file = output_path + "apm_debug.txt";
  /bionic/tools/versioner/src/
Preprocessor.cpp 393 static void rewriteFile(const std::string& output_path, std::deque<std::string>& file_lines,
412 printf("Preprocessing %s...\n", output_path.c_str());
414 writeFileLines(output_path, file_lines);
498 std::string output_path = (llvm::Twine(dst_dir) + rel_path).str(); local
500 rewriteFile(output_path, file_lines[file_path], guard_map);
  /frameworks/base/tools/aapt2/cmd/
Optimize.cpp 51 Maybe<std::string> output_path; member in struct:aapt::OptimizeOptions
230 if (options_.output_path) {
232 CreateZipFileArchiveWriter(context_->GetDiagnostics(), options_.output_path.value());
357 .OptionalFlag("-o", "Path to the output APK.", &options.output_path)
Compile.cpp 111 std::string output_path; member in struct:aapt::CompileOptions
190 const std::string& output_path) {
239 if (!writer->StartEntry(output_path, 0)) {
240 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to open");
253 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to write");
259 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to finish entry");
265 static bool WriteHeaderAndBufferToWriter(const StringPiece& output_path, const ResourceFile& file,
269 if (!writer->StartEntry(output_path, 0)) {
270 diag->Error(DiagMessage(output_path) << "failed to open file");
290 diag->Error(DiagMessage(output_path) << "failed to write data")
    [all...]
Link.cpp 72 std::string output_path; member in struct:aapt::LinkOptions
    [all...]
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 263 string output_path = local
266 llvm::sys::path::parent_path(output_path))) {
268 output_path.c_str(), EC.message().c_str());
277 if (!out.startFile(output_path, filename, context.rsFileName,
  /external/avb/test/
avbtool_unittest.cc 709 base::FilePath output_path = testdir_.Append("max_size.txt"); local
716 output_path.value().c_str());
718 EXPECT_TRUE(base::ReadFileToString(output_path, &max_image_size_data));
1224 base::FilePath output_path = testdir_.Append("max_size.txt"); local
1260 base::FilePath output_path = testdir_.Append("max_size.txt"); local
1916 base::FilePath output_path = testdir_.Append("versions.txt"); local
1962 base::FilePath output_path = testdir_.Append("tmp_certificate.bin"); local
1987 base::FilePath output_path = testdir_.Append("tmp_certificate.bin"); local
2010 base::FilePath output_path = testdir_.Append("tmp_attributes.bin"); local
2025 base::FilePath output_path = testdir_.Append("tmp_metadata.bin"); local
    [all...]
  /external/brotli/tools/
bro.c 80 char **output_path,
92 *output_path = 0;
142 if (*output_path != 0) {
145 *output_path = argv[k + 1];
207 static FILE *OpenOutputFile(const char *output_path, const int force) {
209 if (output_path == 0) {
212 fd = open(output_path, O_CREAT | (force ? 0 : O_EXCL) | O_WRONLY | O_TRUNC,
217 if (stat(output_path, &statbuf) == 0) {
248 static void CopyStat(const char* input_path, const char* output_path) {
252 if (input_path == 0 || output_path == 0)
458 char *output_path = 0; local
    [all...]
  /external/selinux/policycoreutils/semodule/
semodule.c 428 char output_path[PATH_MAX]; local
485 rlen = snprintf(output_path, PATH_MAX, "%s.%s", output_name, lang_ext);
492 if (access(output_path, F_OK) == 0) {
498 output_fd = fopen(output_path, "w");
500 fprintf(stderr, "%s: Unable to open %s\n", argv[0], output_path);
506 fprintf(stderr, "%s: Unable to write to %s\n", argv[0], output_path);

Completed in 1185 milliseconds