HomeSort by relevance Sort by last modified time
    Searched defs:tempfile (Results 1 - 25 of 583) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/tools/
ndk_missing_symbols.py 19 import tempfile namespace
31 tmp_dir = tempfile.mkdtemp()
genlibgcc_compat.py 71 import tempfile namespace
93 build_output_file_path = tempfile.mkstemp()[1]
  /external/autotest/client/bin/
update_intel_pci_ids 16 import tempfile namespace
49 local_repo = tempfile.mkdtemp()
  /external/autotest/server/cros/
gsutil_wrapper.py 9 import tempfile namespace
34 with tempfile.NamedTemporaryFile(suffix='.wpr') as tempsource:
  /external/chromium-trace/catapult/catapult_build/
temp_deployment_dir.py 9 import tempfile namespace
21 deployment_dir = tempfile.mkdtemp(prefix='deploy-')
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
trace_test.py 4 import tempfile namespace
28 self._file = tempfile.NamedTemporaryFile()
log_io_test.py 8 import tempfile namespace
17 file = tempfile.NamedTemporaryFile()
25 file = tempfile.NamedTemporaryFile()
35 file = tempfile.NamedTemporaryFile()
  /external/chromium-trace/catapult/systrace/profile_chrome/
trace_packager_unittest.py 6 import tempfile namespace
20 with tempfile.NamedTemporaryFile(delete=False) as f1, \
21 tempfile.NamedTemporaryFile(delete=False) as f2:
27 with tempfile.NamedTemporaryFile() as output:
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
android_screen_recorder_profiler_unittest.py 7 import tempfile namespace
18 out_dir = tempfile.mkdtemp()
android_systrace_profiler_unittest.py 6 import tempfile namespace
18 out_dir = tempfile.mkdtemp()
netlog_profiler.py 6 import tempfile namespace
28 dump_file = tempfile.mkstemp()[1]
  /external/chromium-trace/catapult/tracing/tracing_build/
generate_about_tracing_contents_unittest.py 6 import tempfile namespace
16 tmpdir = tempfile.mkdtemp()
trace2html_unittest.py 7 import tempfile namespace
16 # Note: We can't use "with" when working with tempfile.NamedTemporaryFile as
19 raw_tmpfile = tempfile.NamedTemporaryFile(
vulcanize_trace_viewer_unittest.py 8 import tempfile namespace
17 # Note: We can't use "with" when working with tempfile.NamedTemporaryFile
20 raw_tmpfile = tempfile.NamedTemporaryFile(
  /external/icu/tools/
i18nutil.py 3 import tempfile namespace
21 tmp_dir = tempfile.mkdtemp('-i18n')
  /external/mesa3d/src/glsl/tests/
compare_ir 32 import tempfile namespace
48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
  /external/skia/platform_tools/android/tradefed/
upload_dm_results.py 13 import tempfile namespace
39 tmp = tempfile.mkdtemp()
  /system/extras/simpleperf/
environment_test.cpp 54 TemporaryFile tempfile; local
55 ASSERT_TRUE(android::base::WriteStringToFile(data, tempfile.path));
62 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol)));
69 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol)));
73 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol)));
  /cts/apps/CameraITS/tools/
run_all_tests.py 17 import tempfile namespace
85 topdir = tempfile.mkdtemp()
  /external/autotest/client/common_lib/cros/fake_device_server/
common_util_unittest.py 11 import tempfile namespace
26 json_file = tempfile.TemporaryFile()
38 json_file = tempfile.TemporaryFile()
  /external/autotest/client/site_tests/kernel_SchedCgroups/
kernel_SchedCgroups.py 7 import os, tempfile namespace
26 self._tmpdir = tempfile.mkdtemp()
  /external/autotest/client/site_tests/security_Minijail0/src/
mountns-enter.py 8 import tempfile namespace
14 tmpdir = tempfile.mkdtemp(prefix="newns-", dir="/tmp")
  /external/autotest/site_utils/suite_scheduler/
forgiving_config_parser_unittest.py 9 import logging, mox, os, tempfile, unittest namespace
17 self._tmpconfig = tempfile.NamedTemporaryFile()
  /external/chromium-trace/catapult/telemetry/telemetry/core/
platform_unittest.py 6 import tempfile namespace
34 tf = tempfile.NamedTemporaryFile(delete=False, suffix='.png')
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
browser_credentials_unittest.py 5 import tempfile namespace
42 with tempfile.NamedTemporaryFile(delete=False) as f:

Completed in 306 milliseconds

1 2 3 4 5 6 7 8 91011>>