Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 25 of 62) sorted by relevance

123

/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dtcpdump_profiler.py27 def __init__(self, device, output_path): argument
29 self._output_path = output_path
68 def __init__(self, output_path): argument
69 if not os.path.exists(output_path):
70 os.makedirs(output_path)
71 self._dump_file = os.path.join(output_path, self._DUMP_FILE)
106 def __init__(self, browser_backend, platform_backend, output_path, state): argument
108 browser_backend, platform_backend, output_path, state)
113 browser_backend.device, output_path)
115 self._platform_profiler = _TCPDumpProfilerLinux(output_path)
Dtrace_profiler.py16 def __init__(self, browser_backend, platform_backend, output_path, state, argument
19 browser_backend, platform_backend, output_path, state)
61 def __init__(self, browser_backend, platform_backend, output_path, state): argument
63 browser_backend, platform_backend, output_path, state,
73 def __init__(self, browser_backend, platform_backend, output_path, state): argument
75 browser_backend, platform_backend, output_path, state,
Dmonsoon_profiler.py21 def _CollectData(output_path, is_collecting): argument
48 with open(output_path, 'w') as output_file:
64 'gnuplot --persist' % output_path)
68 def __init__(self, browser_backend, platform_backend, output_path, state): argument
70 browser_backend, platform_backend, output_path, state)
75 target=_CollectData, args=(output_path, self._is_collecting))
Dandroid_systrace_profiler.py27 def __init__(self, browser_backend, platform_backend, output_path, state, argument
30 browser_backend, platform_backend, output_path, state)
32 self._output_path = output_path + '-trace.zip'
33 self._systrace_output_path = output_path + '.systrace'
Diprofiler_profiler.py21 def __init__(self, pid, output_path): argument
22 self._output_path = output_path
67 def __init__(self, browser_backend, platform_backend, output_path, state): argument
69 browser_backend, platform_backend, output_path, state)
Dsample_profiler.py17 def __init__(self, pid, output_path): argument
18 self._output_path = output_path
60 def __init__(self, browser_backend, platform_backend, output_path, state): argument
62 browser_backend, platform_backend, output_path, state)
Dandroid_screen_recorder_profiler.py21 def __init__(self, browser_backend, platform_backend, output_path, state): argument
23 browser_backend, platform_backend, output_path, state)
24 self._output_path = output_path + '.mp4'
Dtcmalloc_heap_profiler.py25 def __init__(self, browser_backend, output_path): argument
27 self._output_path = output_path
105 def __init__(self, browser_backend, platform_backend, output_path, state): argument
107 browser_backend, platform_backend, output_path, state)
110 browser_backend, output_path)
D__init__.py20 def __init__(self, browser_backend, platform_backend, output_path, state): argument
23 self._output_path = output_path
Dwin_pgo_profiler.py20 def __init__(self, browser_backend, platform_backend, output_path, state): argument
22 browser_backend, platform_backend, output_path, state)
Doomkiller_profiler.py28 def __init__(self, browser_backend, platform_backend, output_path, state): argument
30 browser_backend, platform_backend, output_path, state)
Dandroid_traceview_profiler.py23 def __init__(self, browser_backend, platform_backend, output_path, state): argument
25 browser_backend, platform_backend, output_path, state)
/external/llvm/utils/llvm-build/llvmbuild/
Dmain.py203 def write_components(self, output_path): argument
257 directory_path = os.path.join(output_path, subpath[1:])
319 def write_library_table(self, output_path, enabled_optional_components): argument
385 make_install_dir(os.path.dirname(output_path))
386 f = open(output_path+'.new', 'w')
428 if not os.path.isfile(output_path):
429 os.rename(output_path+'.new', output_path)
430 elif filecmp.cmp(output_path, output_path+'.new'):
431 os.remove(output_path+'.new')
433 os.remove(output_path)
[all …]
Dconfigutil.py8 def configure_file(input_path, output_path, substitutions): argument
39 output_parent_path = os.path.dirname(os.path.abspath(output_path))
44 if os.path.exists(output_path):
47 f = open(output_path, "rb")
60 f = open(output_path, "wb")
/external/dbus-binding-generator/chromeos-dbus-bindings/
Dproxy_generator_unittest.cc1349 base::FilePath output_path = temp_dir_.path().Append("output.h"); in TEST_F() local
1351 EXPECT_TRUE(ProxyGenerator::GenerateProxies(config, interfaces, output_path)); in TEST_F()
1353 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
1367 base::FilePath output_path = temp_dir_.path().Append("output2.h"); in TEST_F() local
1370 EXPECT_TRUE(ProxyGenerator::GenerateProxies(config, interfaces, output_path)); in TEST_F()
1372 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
1388 base::FilePath output_path = temp_dir_.path().Append("output3.h"); in TEST_F() local
1392 EXPECT_TRUE(ProxyGenerator::GenerateProxies(config, interfaces, output_path)); in TEST_F()
1394 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
1409 base::FilePath output_path = temp_dir_.path().Append("output4.h"); in TEST_F() local
[all …]
Dmethod_name_generator_unittest.cc61 base::FilePath output_path = temp_dir_.path().Append("output.h"); in TEST_F() local
63 output_path)); in TEST_F()
65 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
Dproxy_generator_mock_unittest.cc237 base::FilePath output_path = temp_dir_.path().Append("output.h"); in TEST_F() local
241 EXPECT_TRUE(ProxyGenerator::GenerateMocks(config, interfaces, output_path, in TEST_F()
244 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
Dadaptor_generator_unittest.cc303 base::FilePath output_path = temp_dir_.path().Append("output.h"); in TEST_F() local
305 output_path)); in TEST_F()
307 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
/external/autotest/client/site_tests/graphics_VTSwitch/
Dgraphics_VTSwitch.py167 output_path = os.path.join(self.resultsdir, filename)
168 return self._take_drm_screenshot(output_path)
171 def _take_drm_screenshot(self, output_path): argument
177 output = utils.system_output('%s %s.rgba' % (getfb_path, output_path))
186 (size, output_path, output_path))
188 logging.info('Saving screenshot to %s', output_path)
189 return output_path
/external/pdfium/testing/tools/
Dfixup_pdf_template.py74 def expand_file(input_path, output_path): argument
78 with open(output_path, 'wb') as outfile:
95 output_path = os.path.join(output_dir, testcase_root + '.pdf')
96 expand_file(testcase_path, output_path)
/external/autotest/client/site_tests/graphics_dEQP/
Dprocess_logs.py230 output_path = os.path.join(_EXPECTATIONS_DIR, gpu)
231 if not os.access(output_path, os.R_OK):
232 os.makedirs(output_path)
233 expectation_path = os.path.join(output_path, filter)
235 expectation_path = os.path.join(output_path, filter + '.hasty')
/external/opencv3/platforms/ios/
Dbuild_framework.py158 output_path = os.path.abspath(args.outputdir[0]) variable
159 print "Output:", output_path
162 build_framework(opencv_path, output_path)
/external/jsoncpp/
Damalgamate.py42 def write_to( self, output_path ): argument
43 output_dir = os.path.dirname( output_path )
46 f = open( output_path, "wb" )
/external/autotest/client/site_tests/video_VideoEncodeAccelerator/
Dvideo_VideoEncodeAccelerator.py67 output_path = os.path.join(self.tmpdir,
71 input_path, width, height, profile, output_path, bit_rate)
/external/selinux/policycoreutils/semodule/
Dsemodule.c428 char output_path[PATH_MAX]; in main() local
485 rlen = snprintf(output_path, PATH_MAX, "%s.%s", output_name, lang_ext); in main()
492 if (access(output_path, F_OK) == 0) { in main()
498 output_fd = fopen(output_path, "w"); in main()
500 fprintf(stderr, "%s: Unable to open %s\n", argv[0], output_path); in main()
506 fprintf(stderr, "%s: Unable to write to %s\n", argv[0], output_path); in main()

123