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

1 2 3

  /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/;
new-run-webkit-websocketserver 35 import tempfile
82 options.output_dir = tempfile.gettempdir()
  /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/webkit/Tools/wx/build/
waf_extensions.py 36 import tempfile namespace
37 (fd, filename) = tempfile.mkstemp()
51 (fd2, filename2) = tempfile.mkstemp()
  /external/v8/tools/
disasm.py 33 import tempfile namespace
61 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/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())
  /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);
  /build/tools/releasetools/
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())
img_from_target_files 43 import tempfile namespace
62 temp_dir = tempfile.mkdtemp()
65 img = tempfile.NamedTemporaryFile()
102 img = tempfile.NamedTemporaryFile()
  /external/clang/tools/scan-build/
set-xcode-analyzer 6 import tempfile namespace
18 t = tempfile.NamedTemporaryFile(delete=False)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_lock.py 35 import tempfile namespace
52 self._lock_path = tempfile.gettempdir()
  /frameworks/base/tests/DumpRenderTree2/assets/
run_layout_tests.py 18 import tempfile namespace
29 tmpdir = tempfile.gettempdir()
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog_unittest.py 33 import tempfile namespace
114 (file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on close in python < 2.6
  /external/flac/libFLAC/
metadata_iterators.c 127 static FLAC__bool simple_iterator_copy_file_prefix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilename, FLAC__bool append);
128 static FLAC__bool simple_iterator_copy_file_postfix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilename, int fixup_is_last_code, off_t fixup_is_last_flag_offset, FLAC__bool backup);
130 static FLAC__bool copy_n_bytes_from_file_(FILE *file, FILE *tempfile, off_t bytes, FLAC__Metadata_SimpleIteratorStatus *status);
132 static FLAC__bool copy_remaining_bytes_from_file_(FILE *file, FILE *tempfile, FLAC__Metadata_SimpleIteratorStatus *status);
135 static FLAC__bool open_tempfile_(const char *filename, const char *tempfile_path_prefix, FILE **tempfile, char **tempfilename, FLAC__Metadata_SimpleIteratorStatus *status);
136 static FLAC__bool transport_tempfile_(const char *filename, FILE **tempfile, char **tempfilename, FLAC__Metadata_SimpleIteratorStatus *status);
137 static void cleanup_tempfile_(FILE **tempfile, char **tempfilename);
487 * original with the tempfile fast but requires extra space in the same
488 * partition for the tempfile. If space is a problem, you can pass a
1399 FILE *f, *tempfile; local
2904 FILE *tempfile; local
    [all...]

Completed in 811 milliseconds

1 2 3