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

1 2 3 4

  /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/webkit/Tools/Scripts/
show-pretty-diff 28 use File::Temp qw(tempfile);
40 ($inputTempFileHandle, $inputPath) = tempfile(
55 my ($prettydiffFileHandle, $prettydiffPath) = tempfile(
pdevenv 6 use File::Temp qw/tempfile/;
12 my ($fh, $path) = tempfile(UNLINK => 0, SUFFIX => '.cmd') or die;
new-run-webkit-httpd 43 import tempfile namespace
65 tempfile.gettempdir(),
run-bindings-tests 36 import tempfile namespace
82 work_directory = tempfile.mkdtemp()
run-launcher 34 use File::Temp qw/tempfile/;
  /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
  /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/webkit/Tools/Scripts/webkitpy/common/
prettypatch.py 30 import tempfile namespace
44 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
  /external/skia/tools/
test_rendering.py 14 import tempfile namespace
108 render_dir = tempfile.mkdtemp()
113 diff_dir = tempfile.mkdtemp()
test_pdfs.py 17 import tempfile namespace
rebaseline.py 16 import os, subprocess, sys, tempfile namespace
62 temp = tempfile.NamedTemporaryFile()
merge_static_libs.py 10 import tempfile namespace
23 tempdir = tempfile.mkdtemp()
svndiff.py 18 import tempfile namespace
82 dest_dir = tempfile.mkdtemp()
  /external/webkit/Tools/wx/build/
waf_extensions.py 36 import tempfile namespace
37 (fd, filename) = tempfile.mkstemp()
51 (fd2, filename2) = tempfile.mkstemp()
  /build/tools/releasetools/
img_from_target_files 43 import tempfile namespace
62 img = tempfile.NamedTemporaryFile()
107 img = tempfile.NamedTemporaryFile()
120 img = tempfile.NamedTemporaryFile()
149 temp_dir = tempfile.mkdtemp()
152 img = tempfile.NamedTemporaryFile()
181 temp_dir = tempfile.mkdtemp()
184 img = tempfile.NamedTemporaryFile()
sign_target_files_apks 79 import tempfile namespace
125 unsigned = tempfile.NamedTemporaryFile()
129 signed = tempfile.NamedTemporaryFile()
257 tempfile = cStringIO.StringIO()
258 certs_zip = zipfile.ZipFile(tempfile, "w")
263 tempfile.getvalue())
  /external/v8/tools/
disasm.py 33 import tempfile namespace
62 tmp_name = tempfile.mktemp(".v8code")
  /external/webkit/Tools/Scripts/webkitpy/common/system/
file_lock_unittest.py 28 import tempfile namespace
38 self._lock_path = os.path.join(tempfile.gettempdir(), self._lock_name)
deprecated_logging_unittest.py 31 import tempfile namespace
  /external/blktrace/btt/
bno_plot.py 41 import getopt, glob, os, sys, tempfile namespace
92 tmpdir = tempfile.mktemp()
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
preparechangelogforrevert_unittest.py 33 import tempfile namespace
45 (file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on close in python < 2.6
  /system/extras/tests/bionic/libc/other/
test_zlib.c 178 char tempfile[256]; local
215 sprintf(tempfile, "/tmp/ztest.%d", getpid() );
235 out = fopen( tempfile, "wb" );
237 fprintf(stderr, "could not create '%s': %s\n", tempfile, strerror(errno));
253 f = fopen( tempfile, "rb" );
265 unlink(tempfile);
  /bionic/libc/tools/zoneinfo/
generate 11 import tempfile namespace
71 tmp_dir = tempfile.mkdtemp('-tzdata')
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_lock.py 35 import tempfile namespace
52 self._lock_path = tempfile.gettempdir()

Completed in 613 milliseconds

1 2 3 4