/external/llvm/utils/llvm-build/llvmbuild/ |
configutil.py | 8 def configure_file(input_path, output_path, substitutions): 9 """configure_file(input_path, output_path, substitutions) -> bool 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")
|
main.py | 203 def write_components(self, output_path): 257 directory_path = os.path.join(output_path, subpath[1:]) 319 def write_library_table(self, output_path, enabled_optional_components): 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') [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
tcpdump_profiler.py | 27 def __init__(self, device, output_path): 29 self._output_path = output_path 68 def __init__(self, output_path): 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): 108 browser_backend, platform_backend, output_path, state) 113 browser_backend.device, output_path) 115 self._platform_profiler = _TCPDumpProfilerLinux(output_path) [all...] |
trace_profiler.py | 16 def __init__(self, browser_backend, platform_backend, output_path, state, 19 browser_backend, platform_backend, output_path, state) 61 def __init__(self, browser_backend, platform_backend, output_path, state): 63 browser_backend, platform_backend, output_path, state, 73 def __init__(self, browser_backend, platform_backend, output_path, state): 75 browser_backend, platform_backend, output_path, state,
|
android_screen_recorder_profiler.py | 21 def __init__(self, browser_backend, platform_backend, output_path, state): 23 browser_backend, platform_backend, output_path, state) 24 self._output_path = output_path + '.mp4'
|
monsoon_profiler.py | 21 def _CollectData(output_path, is_collecting): 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): 70 browser_backend, platform_backend, output_path, state) 75 target=_CollectData, args=(output_path, self._is_collecting))
|
android_systrace_profiler.py | 27 def __init__(self, browser_backend, platform_backend, output_path, state, 30 browser_backend, platform_backend, output_path, state) 32 self._output_path = output_path + '-trace.zip' 33 self._systrace_output_path = output_path + '.systrace'
|
iprofiler_profiler.py | 21 def __init__(self, pid, output_path): 22 self._output_path = output_path 67 def __init__(self, browser_backend, platform_backend, output_path, state): 69 browser_backend, platform_backend, output_path, state)
|
sample_profiler.py | 17 def __init__(self, pid, output_path): 18 self._output_path = output_path 60 def __init__(self, browser_backend, platform_backend, output_path, state): 62 browser_backend, platform_backend, output_path, state)
|
__init__.py | 20 def __init__(self, browser_backend, platform_backend, output_path, state): 23 self._output_path = output_path
|
tcmalloc_heap_profiler.py | 25 def __init__(self, browser_backend, output_path): 27 self._output_path = output_path 105 def __init__(self, browser_backend, platform_backend, output_path, state): 107 browser_backend, platform_backend, output_path, state) 110 browser_backend, output_path)
|
android_traceview_profiler.py | 23 def __init__(self, browser_backend, platform_backend, output_path, state): 25 browser_backend, platform_backend, output_path, state)
|
oomkiller_profiler.py | 28 def __init__(self, browser_backend, platform_backend, output_path, state): 30 browser_backend, platform_backend, output_path, state)
|
java_heap_profiler.py | 28 def __init__(self, browser_backend, platform_backend, output_path, state): 30 browser_backend, platform_backend, output_path, state)
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
method_name_generator_unittest.cc | 61 base::FilePath output_path = temp_dir_.path().Append("output.h"); local 63 output_path)); 65 EXPECT_TRUE(base::ReadFileToString(output_path, &contents));
|
/system/update_engine/payload_generator/ |
delta_diff_generator.h | 36 // |output_path| is the filename where the delta update should be written. 40 const std::string& 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);
|
/development/testrunner/coverage/ |
coverage.py | 72 output_path=None, 81 output_path: path to place output files in. If None will use 84 If not None, this will be used to customize output_path as shown above. 89 if output_path is None: 93 output_path = os.path.join(self._out_path, 100 coverage_local_path = os.path.join(output_path, 104 report_path = os.path.join(output_path, 213 output_path = os.path.join(self._output_root_path, target_name) 215 if os.path.isdir(output_path) and target is not None: 216 coverage_files = self._FindCoverageFiles(output_path) [all...] |
/external/pdfium/testing/tools/ |
fixup_pdf_template.py | 74 def expand_file(input_path, output_path): 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_VTSwitch/ |
graphics_VTSwitch.py | 167 output_path = os.path.join(self.resultsdir, filename) 168 return self._take_drm_screenshot(output_path) 171 def _take_drm_screenshot(self, output_path): 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
|
/cts/tests/camera/src/android/hardware/multiprocess/camera/cts/ |
MediaRecorderCameraActivity.java | 45 private final String OUTPUT_PATH = new File(Environment.getExternalStorageDirectory(), 121 mOutFile = new File(OUTPUT_PATH); 127 mMediaRecorder.setOutputFile(OUTPUT_PATH);
|
/external/mesa3d/src/gallium/targets/egl-static/ |
Makefile | 183 OUTPUT_PATH := $(TOP)/$(LIB_DIR)/egl 184 OUTPUTS := $(addprefix $(OUTPUT_PATH)/, $(addsuffix .so, $(OUTPUTS))) 188 $(OUTPUT_PATH)/egl_gallium.so: $(egl_OBJECTS) $(egl_LIBS) 191 -cplusplus -install $(OUTPUT_PATH) $(MKLIB_OPTIONS) \ 195 $(OUTPUT_PATH)/st_GL.so: st_GL.o $(st_GL_LIBS) 198 -cplusplus -install $(OUTPUT_PATH) $(MKLIB_OPTIONS) \
|
/device/google/dragon/crash_collector/ |
coredump_writer.h | 78 const std::string& output_path); 84 const std::string& output_path);
|
/external/autotest/client/site_tests/video_VideoEncodeAccelerator/ |
video_VideoEncodeAccelerator.py | 67 output_path = os.path.join(self.tmpdir, 71 input_path, width, height, profile, output_path, bit_rate)
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaRecorderTest.java | 53 private final String OUTPUT_PATH; 95 OUTPUT_PATH = new File(Environment.getExternalStorageDirectory(), 125 mOutFile = new File(OUTPUT_PATH); 131 mMediaRecorder.setOutputFile(OUTPUT_PATH); 234 recordVideoUsingCamera(mCamera, OUTPUT_PATH, durMs, timelapse, pause); 237 assertTrue(checkLocationInFile(OUTPUT_PATH)); 421 mMediaRecorder.setOutputFile(OUTPUT_PATH); 433 mMediaRecorder.setOutputFile(OUTPUT_PATH); 459 mMediaRecorder.setOutputFile(OUTPUT_PATH); 509 long actualFileDurationMs = getRecordedFileDurationMs(OUTPUT_PATH); [all...] |