Searched refs:tempfile (Results 1 - 25 of 249) sorted by relevance

12345678910

/external/chromium_org/native_client_sdk/src/tools/tests/
H A Dfix_deps_test.py7 import tempfile namespace
26 self.tempfile = None
29 if self.tempfile:
30 os.remove(self.tempfile)
45 self.tempfile = tempfile.mktemp("_sdktest")
46 with open(self.tempfile, 'w') as out:
48 fix_deps.FixupDepFile(self.tempfile)
49 with open(self.tempfile) as infile:
58 self.tempfile
[all...]
/external/qemu/android/utils/
H A Dtempfile.c13 #include "android/utils/tempfile.h"
56 TempFile* tempfile; local
99 tempfile = malloc( sizeof(*tempfile) + strlen(tempname) + 1 );
100 tempfile->name = (char*)(tempfile + 1);
101 strcpy( (char*)tempfile->name, tempname );
103 tempfile->next = _all_tempfiles;
104 _all_tempfiles = tempfile;
106 if ( !tempfile
120 tempfile_close(TempFile* tempfile) argument
192 TempFile* tempfile; local
[all...]
/external/chromium_org/build/android/
H A Dadb_android_webview_command_line20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
H A Dadb_chrome_shell_command_line20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
H A Dadb_content_shell_command_line20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
/external/chromium_org/tools/profile_chrome/
H A Dtrace_packager_unittest.py6 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/llvm/utils/release/
H A Dmerge.sh61 tempfile=`mktemp /tmp/merge.XXXXXX` || exit 1
63 echo "Merging r$rev:" > $tempfile
64 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1
72 svn commit -F $tempfile || exit 1
73 rm -f $tempfile
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dshow-pretty-diff28 use File::Temp qw(tempfile);
40 ($inputTempFileHandle, $inputPath) = tempfile(
55 my ($prettydiffFileHandle, $prettydiffPath) = tempfile(
/external/chromium_org/tools/memory_inspector/memory_inspector/unittest/mock_adb/
H A Dmock_adb.py7 import tempfile namespace
25 (fd_num, self._cfg_file) = tempfile.mkstemp()
/external/chromium_org/build/android/gyp/util/
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/
H A Dextract_from_cab.py12 import tempfile namespace
34 temp_dir = tempfile.mkdtemp(dir=output_dir)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dprettypatch.py30 import tempfile namespace
42 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dimagepair_test.py14 import tempfile namespace
29 self.temp_dir = tempfile.mkdtemp()
/external/chromium_org/third_party/skia/platform_tools/android/tests/
H A Dgyp_to_android_tests.py15 import tempfile namespace
30 self.__tmp_dir = tempfile.mkdtemp()
/external/chromium_org/tools/cr/cr/commands/
H A Dshell.py8 import tempfile namespace
48 with tempfile.NamedTemporaryFile() as rcfile:
/external/chromium_org/tools/deep_memory_profiler/visualizer/
H A Dtemplate.py9 import tempfile namespace
63 html_handle, html_path = tempfile.mkstemp('.html', 'graph', html_dir)
/external/chromium_org/tools/perf/measurements/
H A Dscreenshot_unittest.py7 import tempfile namespace
19 self._options.png_outdir = tempfile.mkdtemp('_png_test')
H A Dskpicture_printer_unittest.py6 import tempfile namespace
17 self._options.skp_outdir = tempfile.mkdtemp('_skp_test')
/external/chromium_org/tools/perf/
H A Drecord_android_profile.py8 import tempfile namespace
20 output_file = os.path.join(tempfile.mkdtemp(), options.profiler)
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dandroid_systrace_profiler_unittest.py6 import tempfile namespace
18 out_dir = tempfile.mkdtemp()
H A Dnetlog_profiler.py5 import tempfile namespace
27 dump_file = tempfile.mkstemp()[1]
H A Dv8_profiler.py6 import tempfile namespace
28 dump_file = tempfile.mkstemp()[1]
/external/compiler-rt/test/asan/android_commands/
H A Dandroid_common.py1 import os, subprocess, tempfile namespace
18 tmp = tempfile.mktemp()
/external/skia/gm/rebaseline_server/
H A Dimagepair_test.py14 import tempfile namespace
28 self._temp_dir = tempfile.mkdtemp()
/external/skia/platform_tools/android/tests/
H A Dgyp_to_android_tests.py15 import tempfile namespace
30 self.__tmp_dir = tempfile.mkdtemp()

Completed in 540 milliseconds

12345678910