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);
  /build/tools/releasetools/
img_from_target_files 39 import tempfile namespace
59 temp_dir = tempfile.mkdtemp()
62 img = tempfile.NamedTemporaryFile()
81 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 24 import tempfile namespace
99 ramdisk_img = tempfile.NamedTemporaryFile()
100 img = tempfile.NamedTemporaryFile()
152 tmp = tempfile.mkdtemp(prefix="targetfiles-")
214 temp = tempfile.NamedTemporaryFile()
  /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")
  /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);
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
SerializationStressTest5.java 131 File tempfile = new File(files[i], tempFileNames[j]); local
132 if (tempfile.isDirectory()
134 String[] subdirNames = tempfile.list();
136 File subdir = new File(tempfile, subdirNames[k]);
139 return tempfile;
  /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(),
  /external/webkit/WebKitTools/wx/packaging/
build-mac-installer.py 36 import tempfile namespace

Completed in 1037 milliseconds

1 2