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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/android/utils/
tempfile.c 13 #include "android/utils/tempfile.h"
34 ** create the file with tempfile_create(), which returns a reference to a TempFile
37 ** you can then call tempfile_path() to retrieve the TempFile's real path to open
38 ** it. the returned path is owned by the TempFile object and should not be freed.
44 struct TempFile
47 TempFile* next;
51 static TempFile* _all_tempfiles;
53 TempFile*
56 TempFile* tempfile; local
192 TempFile* tempfile; local
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/tests/
fix_deps_test.py 7 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 = tempfile.mktemp("_sdktest"
    [all...]
  /external/chromium_org/build/android/
adb_android_webview_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
adb_chrome_shell_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
adb_content_shell_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
  /external/chromium_org/tools/android/adb_profile_chrome/
trace_packager_unittest.py 8 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/
merge.sh 61 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/
show-pretty-diff 28 use File::Temp qw(tempfile);
40 ($inputTempFileHandle, $inputPath) = tempfile(
55 my ($prettydiffFileHandle, $prettydiffPath) = tempfile(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 12 import tempfile namespace
32 ("tempfile.TemporaryFile", tempfile.TemporaryFile, ()),
test_tempfile.py 0 # tempfile.py unit tests.
2 import tempfile namespace
25 has_textmode = (tempfile._text_openflags != tempfile._bin_openflags)
35 # This is organized as one test for each chunk of code in tempfile.py,
71 # There are no surprising symbols in the tempfile module
72 dict = tempfile.__dict__
102 self.r = tempfile._RandomNameSequence()
173 cand = tempfile._candidate_tempdir_list()
189 cand = tempfile._candidate_tempdir_list(
    [all...]
test_bsddb185.py 13 import tempfile namespace
30 tmpdir = tempfile.mkdtemp()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 12 import tempfile namespace
32 ("tempfile.TemporaryFile", tempfile.TemporaryFile, ()),
test_tempfile.py 0 # tempfile.py unit tests.
2 import tempfile namespace
25 has_textmode = (tempfile._text_openflags != tempfile._bin_openflags)
35 # This is organized as one test for each chunk of code in tempfile.py,
71 # There are no surprising symbols in the tempfile module
72 dict = tempfile.__dict__
102 self.r = tempfile._RandomNameSequence()
173 cand = tempfile._candidate_tempdir_list()
189 cand = tempfile._candidate_tempdir_list(
    [all...]
test_bsddb185.py 13 import tempfile namespace
30 tmpdir = tempfile.mkdtemp()
  /frameworks/base/tools/obbtool/
mkobb.sh 138 if [ "x${tempfile}" != "x" -a -f "${tempfile}" ]; then \
139 rm -f ${tempfile}
212 tempfile=$(tempfile -d ${outdir}) || ( echo "ERROR: couldn't create temporary file in ${outdir}"; exit 1 )
221 ${DDBIN} if=/dev/zero of=${tempfile} bs=${BLOCK_SIZE} count=$((${block_count} + ${SLOP})) > /dev/null 2>&1
228 ${LOSETUPBIN} ${loop_dev} ${tempfile} || ( echo "ERROR: couldn't create loopback device"; exit 1 )
232 unique_dm_name=`basename ${tempfile}`
277 mv ${tempfile} ${filename}
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
prettypatch.py 30 import tempfile namespace
42 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
  /external/chromium_org/tools/memory_inspector/memory_inspector/unittest/mock_adb/
mock_adb.py 7 import tempfile namespace
25 (fd_num, self._cfg_file) = tempfile.mkstemp()
  /external/chromium_org/tools/perf/measurements/
skpicture_printer_unittest.py 6 import tempfile namespace
18 self._options.skp_outdir = tempfile.mkdtemp('_skp_test')
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_systrace_profiler_unittest.py 6 import tempfile namespace
18 out_dir = tempfile.mkdtemp()
  /external/compiler-rt/test/asan/android_commands/
android_common.py 1 import os, subprocess, tempfile namespace
18 tmp = tempfile.mktemp()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
stones.py 29 import tempfile namespace
30 main(tempfile.NamedTemporaryFile().name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stones.py 29 import tempfile namespace
30 main(tempfile.NamedTemporaryFile().name)
  /external/chromium_org/build/android/gyp/util/
md5_check_test.py 5 import tempfile namespace
17 input_file1 = tempfile.NamedTemporaryFile()
18 input_file2 = tempfile.NamedTemporaryFile()
27 record_path = tempfile.NamedTemporaryFile(suffix='.stamp')
  /external/chromium_org/third_party/mesa/src/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/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]))

Completed in 1425 milliseconds

1 2 3 4 5 6 7 8 91011>>