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

  /external/perf_data_converter/src/quipper/
conversion_utils_test.cc 21 const string output_path = output_dir.path(); local
29 output.filename = output_path + test_file + ".pb_text";
perf_parser_test.cc 218 string output_path = output_dir.path(); local
229 string pr_output_perf_data = output_path + test_file + ".pr.out";
249 string parsed_perf_data = output_path + test_file + ".parse.out";
268 string remapped_perf_data = output_path + test_file + ".parse.remap.out";
291 string remapped_perf_data2 = output_path + test_file + ".parse.remap2.out";
305 CheckFilenameAndBuildIDMethods(&reader, output_path + test_file, seed);
312 string output_path = output_dir.path(); local
318 string output_perf_data = output_path + test_file + ".pr.out";
340 CheckFilenameAndBuildIDMethods(&reader, output_path + test_file, seed);
    [all...]
perf_serializer_test.cc 189 string output_path = output_dir.path(); local
200 const string output_perf_data = output_path + test_file + ".serialized.out";
202 output_path + test_file + ".serialized.1.out";
223 string output_perf_data2 = output_path + test_file + ".io.out";
250 const string output_path = output_dir.path(); local
258 const string output_perf_data = output_path + test_file + ".ser.remap.out";
265 string output_path = output_dir.path(); local
306 const string output_perf_data = output_path + test_file + ".ser.comm.out";
314 string output_path = output_dir.path(); local
357 const string output_perf_data = output_path + test_file + ".ser.mmap.out"
    [all...]
  /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);
  /external/tensorflow/tensorflow/tools/api/tests/
convert_from_multiline.cc 42 string output_path = io::JoinPath(output_dir, io::Basename(path)); local
43 // Write contents to output_path
45 tensorflow::WriteStringToFile(env, output_path, contents));
  /external/perfetto/tools/ftrace_proto_gen/
main.cc 78 std::string output_path = output_dir + std::string("/") + proto_file_name; local
117 std::ofstream fout(output_path.c_str(), std::ios::out);
119 fprintf(stderr, "Failed to open %s\n", output_path.c_str());
ftrace_proto_gen.cc 211 std::string output_path = "src/ftrace_reader/event_info.cc"; local
212 std::ofstream fout(output_path.c_str(), std::ios::out);
214 fprintf(stderr, "Failed to open %s\n", output_path.c_str());
  /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/tensorflow/tensorflow/contrib/tensor_forest/hybrid/core/ops/
hard_routing_function_op.cc 119 Tensor* output_path = nullptr; variable
128 context, context->allocate_output(1, output_path_shape, &output_path));
131 auto out_path = output_path->tensor<int32, 2>();
stochastic_hard_routing_function_op.cc 132 Tensor* output_path = nullptr; variable
141 context, context->allocate_output(1, output_path_shape, &output_path));
144 auto out_path = output_path->tensor<int32, 2>();
  /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 132 std::string output_path; local
154 output_path = flatbuffers::ConCatPathFileName(
368 flatbuffers::EnsureDirExists(output_path);
370 !params_.generators[i].generate(*parser.get(), output_path, filebase)) {
378 *parser.get(), output_path, filename);
385 if (!params_.generators[i].generateGRPC(*parser.get(), output_path,
398 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";
  /frameworks/base/tools/aapt2/cmd/
Convert.cpp 330 std::string output_path; local
335 .RequiredFlag("-o", "Output path", &output_path)
370 CreateZipFileArchiveWriter(context.GetDiagnostics(), output_path);
Optimize.cpp 58 Maybe<std::string> output_path; member in struct:aapt::OptimizeOptions
211 if (options_.output_path) {
213 CreateZipFileArchiveWriter(context_->GetDiagnostics(), options_.output_path.value());
333 .OptionalFlag("-o", "Path to the output APK.", &options.output_path)
Compile.cpp 124 std::string output_path; member in struct:aapt::CompileOptions
210 const std::string& output_path) {
259 if (!writer->StartEntry(output_path, 0)) {
260 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to open");
273 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to write");
279 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to finish entry");
337 static bool WriteHeaderAndDataToWriter(const StringPiece& output_path, const ResourceFile& file,
341 if (!writer->StartEntry(output_path, 0)) {
342 diag->Error(DiagMessage(output_path) << "failed to open file");
356 diag->Error(DiagMessage(output_path) << "failed to write entry data")
    [all...]
Link.cpp 82 std::string output_path; member in struct:aapt::LinkOptions
    [all...]
  /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/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/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);
  /external/avb/test/
avbtool_unittest.cc 712 base::FilePath output_path = testdir_.Append("max_size.txt"); local
719 output_path.value().c_str());
721 EXPECT_TRUE(base::ReadFileToString(output_path, &max_image_size_data));
1358 base::FilePath output_path = testdir_.Append("max_size.txt"); local
1394 base::FilePath output_path = testdir_.Append("max_size.txt"); local
2248 base::FilePath output_path = testdir_.Append(kOutputFile); local
2271 base::FilePath output_path = testdir_.Append(kOutputFile); local
2303 base::FilePath output_path = testdir_.Append(kOutputFile); local
2317 base::FilePath output_path = testdir_.Append(kOutputFile); local
2358 base::FilePath output_path = testdir_.Append("tmp_certificate.bin"); local
2383 base::FilePath output_path = testdir_.Append("tmp_certificate.bin"); local
2406 base::FilePath output_path = testdir_.Append("tmp_attributes.bin"); local
2421 base::FilePath output_path = testdir_.Append("tmp_metadata.bin"); local
    [all...]
  /external/brotli/c/tools/
brotli.c 96 const char* output_path; member in struct:__anon14421
274 params->output_path = argv[i];
352 params->output_path = value;
376 if (params->output_path) return COMMAND_INVALID;
452 static BROTLI_BOOL OpenOutputFile(const char* output_path, FILE** f,
456 if (!output_path) {
460 fd = open(output_path, O_CREAT | (force ? 0 : O_EXCL) | O_WRONLY | O_TRUNC,
464 PrintablePath(output_path), strerror(errno));
470 PrintablePath(output_path), strerror(errno));
479 static void CopyStat(const char* input_path, const char* output_path) {
    [all...]

Completed in 2321 milliseconds