Searched defs:tempfile (Results 1 - 25 of 231) sorted by path

12345678910

/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py8 import tempfile namespace
31 os.path.realpath(tempfile.gettempdir()),
/external/blktrace/btt/
H A Dbno_plot.py41 import getopt, glob, os, sys, tempfile namespace
92 tmpdir = tempfile.mktemp()
/external/chromium_org/build/android/gyp/
H A Dcreate_standalone_apk.py15 import tempfile namespace
22 with tempfile.NamedTemporaryFile(suffix='.zip') as intermediate_file:
H A Demma_instr.py27 import tempfile namespace
157 temp_dir = tempfile.mkdtemp()
H A Dfinalize_apk.py13 import tempfile namespace
91 with tempfile.NamedTemporaryFile() as signed_apk_path_tmp, \
92 tempfile.NamedTemporaryFile() as apk_to_sign_tmp, \
93 tempfile.NamedTemporaryFile() as apk_without_descriptors_tmp, \
94 tempfile.NamedTemporaryFile() as aligned_apk_tmp:
H A Dpack_arm_relocations.py29 import tempfile namespace
41 with tempfile.NamedTemporaryFile() as stream:
/external/chromium_org/build/android/gyp/util/
H A Dbuild_utils.py16 import tempfile namespace
29 dirname = tempfile.mkdtemp()
H A Dmd5_check_test.py5 import tempfile namespace
17 input_file1 = tempfile.NamedTemporaryFile()
18 input_file2 = tempfile.NamedTemporaryFile()
27 record_path = tempfile.NamedTemporaryFile(suffix='.stamp')
/external/chromium_org/build/android/
H A Dlighttpd_server.py22 import tempfile namespace
49 self.temp_dir = tempfile.mkdtemp(prefix='lighttpd_for_chrome_android')
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py22 import tempfile namespace
1144 with tempfile.NamedTemporaryFile() as f:
1266 temp_props_file = tempfile.NamedTemporaryFile()
1493 self._logcat_tmpoutfile = tempfile.NamedTemporaryFile(bufsize=0)
H A Dscreenshot.py7 import tempfile namespace
53 self._recorder_stdout = tempfile.mkstemp()[1]
/external/chromium_org/build/android/pylib/device/
H A Dadb_wrapper_test.py8 import tempfile namespace
34 fi, path = tempfile.mkstemp()
/external/chromium_org/build/android/pylib/gtest/
H A Dtest_package_apk.py12 import tempfile namespace
43 command_line_file = tempfile.NamedTemporaryFile()
H A Dtest_package_exe.py10 import tempfile namespace
38 ret_code_file = tempfile.NamedTemporaryFile()
93 sh_script_file = tempfile.NamedTemporaryFile()
/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_jar.py13 import tempfile namespace
77 with tempfile.NamedTemporaryFile() as proguard_output:
/external/chromium_org/build/android/pylib/utils/
H A Dflakiness_dashboard_results_uploader.py11 import tempfile namespace
146 tmp_folder = tempfile.mkdtemp()
H A Dparallelizer_test.py11 import tempfile namespace
116 completion_files = [tempfile.NamedTemporaryFile(delete=False)
/external/chromium_org/build/
H A Dextract_from_cab.py12 import tempfile namespace
34 temp_dir = tempfile.mkdtemp(dir=output_dir)
/external/chromium_org/build/mac/
H A Dtweak_info_plist.py30 import tempfile namespace
268 temp_info_plist = tempfile.NamedTemporaryFile()
/external/chromium_org/build/util/lib/common/
H A Dutil.py14 import tempfile namespace
81 path = tempfile.mkdtemp(dir=parent_dir)
/external/chromium_org/build/win/importlibs/
H A Dcreate_importlib_win.py15 import tempfile namespace
198 temp_dir = tempfile.mkdtemp()
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
H A Dupload_chromevox_to_webstore.py23 import tempfile namespace
107 new_file = tempfile.NamedTemporaryFile(mode='w+a', bufsize=0)
/external/chromium_org/chrome/test/chromedriver/
H A Drun_buildbot_steps.py20 import tempfile namespace
69 for server_log in glob.glob(os.path.join(tempfile.gettempdir(),
102 temp_log = tempfile.mkstemp()[1]
215 (latest_fd, latest_file) = tempfile.mkstemp()
331 temp_notes_fname = tempfile.mkstemp()[1]
367 temp_latest_release_fname = tempfile.mkstemp()[1]
376 tmp_dir = tempfile.gettempdir()
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_all_tests.py13 import tempfile namespace
34 _, log_path = tempfile.mkstemp(prefix='chromedriver_')
H A Drun_py_tests.py16 import tempfile namespace
828 tmp_log_path = tempfile.NamedTemporaryFile()
961 _, tmp_log_path = tempfile.mkstemp(prefix='chromedriver_log_')

Completed in 315 milliseconds

12345678910