HomeSort by relevance Sort by last modified time
    Searched refs:out_path (Results 1 - 25 of 40) sorted by null

1 2

  /bionic/tests/
gtest_globals.cpp 33 std::string out_path; local
34 if (!android::base::Realpath(path.c_str(), &out_path)) {
39 out_path += "/bionic-loader-test-libs";
42 if (!android::base::Realpath(out_path, &real_path)) {
43 printf("\"%s\": does not exists", out_path.c_str());
  /external/webrtc/webrtc/tools/frame_editing/
frame_editing_lib.h 36 int last_frame_to_process, const std::string& out_path);
frame_editing_lib.cc 27 int last_frame_to_process, const string& out_path) {
44 FILE* out_fid = fopen(out_path.c_str(), "wb");
47 fprintf(stderr, "Could not open output file: %s.\n", out_path.c_str());
frame_editing.cc 26 " --out_path=edited_clip.yuv\n"
60 "--out_path(string): The output file to which frames are written."
74 parser.SetFlag("out_path", "edited_output.yuv");
91 const char* out_path = parser.GetFlag("out_path").c_str(); local
108 interval, last_frame_to_cut, out_path);
  /cts/apps/CameraITS/tools/
validate_scene.py 26 out_path = ""
34 out_path = s[4:]
40 if out_path != "":
41 scene_name = re.split("/|\.", out_path)[-2]
64 if out_path != "":
65 its.image.write_image(img, out_path)
66 print "Please check scene setup in", out_path
  /frameworks/base/tools/aapt2/io/
Util.cpp 27 bool CopyInputStreamToArchive(IAaptContext* context, InputStream* in, const std::string& out_path,
30 context->GetDiagnostics()->Note(DiagMessage() << "writing " << out_path << " to archive");
33 if (!writer->WriteFile(out_path, compression_flags, in)) {
34 context->GetDiagnostics()->Error(DiagMessage() << "failed to write " << out_path
41 bool CopyFileToArchive(IAaptContext* context, io::IFile* file, const std::string& out_path,
48 return CopyInputStreamToArchive(context, data.get(), out_path, compression_flags, writer);
52 const std::string& out_path, IArchiveWriter* writer) {
54 return CopyFileToArchive(context, file, out_path, compression_flags, writer);
58 const std::string& out_path, uint32_t compression_flags,
61 context->GetDiagnostics()->Note(DiagMessage() << "writing " << out_path << " to archive")
    [all...]
Util.h 32 bool CopyInputStreamToArchive(IAaptContext* context, InputStream* in, const std::string& out_path,
35 bool CopyFileToArchive(IAaptContext* context, IFile* file, const std::string& out_path,
39 const std::string& out_path, IArchiveWriter* writer);
42 const std::string& out_path, uint32_t compression_flags,
  /external/perfetto/tools/
gen_merged_trace_config 68 out_path = os.path.join(root_dir, MERGED_OUT_PROTO)
71 if os.path.exists(out_path):
72 with open(out_path, 'rb') as fprev:
82 with open(out_path, 'wb') as fout:
  /frameworks/layoutlib/rename_font/
test.py 30 out_path = os.path.join(destdir, font_name)
31 ttx.main([out_path])
32 ttx_path = out_path[:-1] + "x"
  /system/update_engine/
connection_manager.h 48 // Returns (via out_path) the default network path, or empty string if
50 bool GetDefaultServicePath(dbus::ObjectPath* out_path);
connection_manager.cc 137 bool ConnectionManager::GetDefaultServicePath(dbus::ObjectPath* out_path) {
150 *out_path = prop_default_service->second.TryGet<dbus::ObjectPath>();
151 return out_path->IsValid();
  /external/skia/experimental/xps_to_png/
xps_to_png.cs 23 static void convert(double dpi, string path, string out_path) {
60 string filename = string.Format("{0}_{1}.png", out_path, index);
72 static void try_convert(double dpi, string path, string out_path) {
74 convert(dpi, path, out_path);
  /external/skqp/experimental/xps_to_png/
xps_to_png.cs 23 static void convert(double dpi, string path, string out_path) {
60 string filename = string.Format("{0}_{1}.png", out_path, index);
72 static void try_convert(double dpi, string path, string out_path) {
74 convert(dpi, path, out_path);
  /external/tensorflow/tensorflow/contrib/tensor_forest/hybrid/core/ops/
hard_routing_function_op.cc 131 auto out_path = output_path->tensor<int32, 2>(); variable
143 out_path(i, 0) = 0;
158 out_path(i, j + 1) = left_child;
162 out_path(i, j + 1) = right_child;
stochastic_hard_routing_function_op.cc 144 auto out_path = output_path->tensor<int32, 2>(); variable
154 out_path(i, 0) = 0;
169 out_path(i, j + 1) = left_child;
177 out_path(i, j + 1) = right_child;
  /frameworks/base/tools/aapt2/cmd/
Util.h 37 // `out_path` with the path and `out_split` with the set of ConfigDescriptions.
39 bool ParseSplitParameter(const android::StringPiece& arg, IDiagnostics* diag, std::string* out_path,
Link.cpp 1101 std::string out_path; local
1253 std::string out_path = options_.generate_java_class_path.value(); local
1287 const std::string& out_path = out.value(); local
    [all...]
  /external/autotest/client/site_tests/platform_SecureEraseFile/
platform_SecureEraseFile.py 67 out_path = tempfile.mktemp()
70 partition, e['offset'], e['length'], out_path)
72 with open(out_path, 'r') as out_file:
  /external/selinux/checkpolicy/
checkmodule.c 264 char *out_path = strdup(outfile); local
265 if (out_path == NULL) {
269 char *out_name = basename(out_path);
278 free(out_path);
  /cts/tools/dasm/src/java_cup/
Main.java 131 private static String out_path = null; field in class:Main
320 out_path = argv[i] + File.separator;
321 File f = new File(out_path);
323 out_path = null;
325 if (out_path == null)
381 if (out_path == null)
382 out_path = "";
385 out_name = out_path + emit.parser_class_name + ".java";
396 out_name = out_path + emit.symbol_const_class_name + ".java";
  /frameworks/rs/tests/java_api/RSUnitTests/
RSUnitTests.py 320 out_path = os.path.join(SupportLibGenTestDir(), java_file_name)
321 with open(in_path, 'r') as in_file, open(out_path, 'w') as out_file:
336 out_path = os.path.join(SupportLibGenTestDir(), rs_file_name)
337 with open(out_path, 'w') as out_file:
  /tools/test/connectivity/acts/framework/acts/controllers/
diag_logger.py 134 def pull(self, session_id=None, out_path=None):
141 out_path: an optional override to host_log_path for a specific set
  /frameworks/base/tools/aapt2/util/
Files.cpp 167 std::string out_path; local
169 AppendPath(&out_path, part);
171 return out_path;
  /cts/hostsidetests/theme/
generate_images.py 108 (themeApkPath, out_path) = setup
123 out_file = os.path.join(out_path, os.path.join(version, "%s.zip" % density_bucket))
215 out_path = os.path.join(os.environ['ANDROID_BUILD_TOP'],
217 os.system("mkdir -p %s" % out_path)
222 result = do_capture(setup=(theme_apk, out_path), device_serial=emulator.get_serial())
231 setup = (theme_apk, out_path)
  /test/vts/testcases/host/camera_its/
CameraITSTest.py 82 self.out_path = logging.log_path
148 outdir = self.out_path

Completed in 529 milliseconds

1 2