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

1 2

  /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/WebKitTools/Scripts/
pdevenv 6 use File::Temp qw/tempfile/;
12 my ($fh, $path) = tempfile(UNLINK => 0, SUFFIX => '.cmd') or die;
run-launcher 34 use File::Temp qw/tempfile/;
sort-Xcode-project-file 34 use File::Temp qw(tempfile);
85 my ($OUT, $tempFileName) = tempfile(
svn-unapply 67 use File::Temp qw(tempfile);
210 my ($fh, $tempPath) = tempfile(basename($fullPath) . "-XXXXXXXX",
parallelcl 168 my (undef, $tmpFile) = File::Temp::tempfile('clcommandXXXXX', DIR => File::Spec->tmpdir, OPEN => 0);
  /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/WebKitTools/wx/build/
waf_extensions.py 36 import tempfile namespace
37 (fd, filename) = tempfile.mkstemp()
  /external/gtest/test/
gtest_xml_outfiles_test.py 39 import tempfile namespace
74 self.output_dir_ = os.path.join(tempfile.mkdtemp(), "")
104 p = gtest_test_utils.Subprocess(command, working_dir=tempfile.mkdtemp())
gtest_filter_unittest.py 49 import tempfile namespace
509 test_tmpdir = tempfile.mkdtemp()
526 test_tmpdir = tempfile.mkdtemp()
gtest_xml_output_unittest.py 40 import tempfile namespace
123 temp_dir = tempfile.mkdtemp()
150 xml_path = os.path.join(tempfile.mkdtemp(), gtest_prog_name + "out.xml")
  /build/tools/releasetools/
img_from_target_files 39 import tempfile namespace
58 temp_dir = tempfile.mkdtemp()
61 img = tempfile.NamedTemporaryFile()
95 img = tempfile.NamedTemporaryFile()
sign_target_files_apks 73 import tempfile namespace
119 unsigned = tempfile.NamedTemporaryFile()
123 signed = tempfile.NamedTemporaryFile()
238 tempfile = cStringIO.StringIO()
239 certs_zip = zipfile.ZipFile(tempfile, "w")
244 tempfile.getvalue())
common.py 26 import tempfile namespace
193 ramdisk_img = tempfile.NamedTemporaryFile()
194 img = tempfile.NamedTemporaryFile()
251 tmp = tempfile.mkdtemp(prefix="targetfiles-")
313 temp = tempfile.NamedTemporaryFile()
657 t = tempfile.NamedTemporaryFile()
695 ptemp = tempfile.NamedTemporaryFile()
  /external/webkit/WebKitTools/Scripts/webkitpy/
webkit_logging_unittest.py 32 import tempfile namespace
credentials_unittest.py 30 import tempfile namespace
121 temp_dir_path = tempfile.mkdtemp(suffix="not_a_git_repo")
queueengine_unittest.py 32 import tempfile namespace
163 self.temp_dir = tempfile.mkdtemp(suffix="work_queue_test_logs")
changelogs_unittest.py 33 import tempfile namespace
95 (file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on close in python < 2.6
scm_unittest.py 36 import tempfile namespace
101 test_object.svn_repo_path = tempfile.mkdtemp(suffix="svn_test_repo")
108 test_object.svn_checkout_path = tempfile.mkdtemp(suffix="svn_test_checkout")
474 self.git_checkout_path = tempfile.mkdtemp(suffix="git_test_checkout")
  /external/blktrace/btt/
bno_plot.py 41 import getopt, glob, os, sys, tempfile namespace
92 tmpdir = tempfile.mktemp()
  /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);
  /external/protobuf/gtest/test/
gtest_test_utils.py 40 import tempfile namespace
136 _temp_dir = tempfile.mkdtemp()
  /external/webkit/JavaScriptCore/pcre/
dftables 49 use File::Temp qw(tempfile);
245 my ($fh, $tempFile) = tempfile(
266 open(CPP, "$preprocessor \"$tempFile\" |") or die "$!";
272 unlink $tempFile;
  /external/v8/test/mjsunit/
testcfg.py 32 import tempfile namespace
84 (fd_self_script, self_script) = tempfile.mkstemp(suffix=".js")
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
http_server.py 39 import tempfile namespace
264 httpd = Lighttpd(tempfile.gettempdir(),

Completed in 697 milliseconds

1 2