Home
last modified time | relevance | path

Searched refs:tempfile (Results 1 – 25 of 68) sorted by relevance

123

/external/qemu/android/utils/
Dtempfile.c56 TempFile* tempfile; in tempfile_create() local
99 tempfile = malloc( sizeof(*tempfile) + strlen(tempname) + 1 ); in tempfile_create()
100 tempfile->name = (char*)(tempfile + 1); in tempfile_create()
101 strcpy( (char*)tempfile->name, tempname ); in tempfile_create()
103 tempfile->next = _all_tempfiles; in tempfile_create()
104 _all_tempfiles = tempfile; in tempfile_create()
106 if ( !tempfile->next ) { in tempfile_create()
110 return tempfile; in tempfile_create()
120 tempfile_close(TempFile* tempfile) in tempfile_close() argument
123 DeleteFile(tempfile->name); in tempfile_close()
[all …]
/external/llvm/utils/release/
Dmerge.sh61 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/flac/libFLAC/
Dmetadata_iterators.c127 …rator_copy_file_prefix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilen…
128 …ator_copy_file_postfix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilen…
130 static FLAC__bool copy_n_bytes_from_file_(FILE *file, FILE *tempfile, off_t bytes, FLAC__Metadata_S…
132 static FLAC__bool copy_remaining_bytes_from_file_(FILE *file, FILE *tempfile, FLAC__Metadata_Simple…
135 …empfile_(const char *filename, const char *tempfile_path_prefix, FILE **tempfile, char **tempfilen…
136 static FLAC__bool transport_tempfile_(const char *filename, FILE **tempfile, char **tempfilename, F…
137 static void cleanup_tempfile_(FILE **tempfile, char **tempfilename);
1399 FILE *f, *tempfile; in chain_rewrite_file_() local
1413 if(!open_tempfile_(chain->filename, tempfile_path_prefix, &tempfile, &tempfilename, &status)) { in chain_rewrite_file_()
1415 cleanup_tempfile_(&tempfile, &tempfilename); in chain_rewrite_file_()
[all …]
/external/webkit/Tools/wx/build/
Dwaf_extensions.py36 import tempfile
37 (fd, filename) = tempfile.mkstemp()
51 (fd2, filename2) = tempfile.mkstemp()
/external/webkit/Tools/Scripts/
Dshow-pretty-diff40 ($inputTempFileHandle, $inputPath) = tempfile(
55 my ($prettydiffFileHandle, $prettydiffPath) = tempfile(
Dnew-run-webkit-httpd43 import tempfile
65 tempfile.gettempdir(),
Drun-bindings-tests36 import tempfile
82 work_directory = tempfile.mkdtemp()
Dnew-run-webkit-websocketserver35 import tempfile
82 options.output_dir = tempfile.gettempdir()
/external/webkit/Tools/Scripts/webkitpy/common/
Dprettypatch.py30 import tempfile
44 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
/external/webkit/Tools/Scripts/webkitpy/common/system/
Dfile_lock_unittest.py28 import tempfile
38 self._lock_path = os.path.join(tempfile.gettempdir(), self._lock_name)
Dfilesystem_unittest.py39 import tempfile
153 text_path = tempfile.mktemp(prefix='tree_unittest_')
154 binary_path = tempfile.mktemp(prefix='tree_unittest_')
Dfilesystem.py39 import tempfile
158 self._directory_path = tempfile.mkdtemp(**self._kwargs)
195 temp_fd, temp_name = tempfile.mkstemp(suffix)
Dexecutive_unittest.py74 tempfile, temp_name = fs.open_binary_tempfile('')
75 tempfile.write(content)
76 tempfile.close()
/external/v8/tools/
Ddisasm.py33 import tempfile
62 tmp_name = tempfile.mktemp(".v8code")
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DSerializationStressTest5.java124 File tempfile = new File(files[i], tempFileNames[j]); in findJavaDir() local
125 if (tempfile.isDirectory() in findJavaDir()
127 String[] subdirNames = tempfile.list(); in findJavaDir()
129 File subdir = new File(tempfile, subdirNames[k]); in findJavaDir()
132 return tempfile; in findJavaDir()
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
Dpreparechangelogforrevert_unittest.py33 import tempfile
45 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on…
/external/blktrace/btt/
Dbno_plot.py41 import getopt, glob, os, sys, tempfile
92 tmpdir = tempfile.mktemp()
/external/clang/tools/scan-build/
Dset-xcode-analyzer11 import tempfile
24 t = tempfile.NamedTemporaryFile(delete=False)
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
Dchangelog_unittest.py33 import tempfile
114 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on …
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dhttp_lock.py35 import tempfile
52 self._lock_path = tempfile.gettempdir()
/external/iptables/iptables/
Diptables-apply113 COMMANDS=(tempfile "$SAVE" "$RESTORE")
124 TMPFILE=$(tempfile -p iptap)
/external/webkit/Tools/Scripts/webkitpy/common/net/
Dcredentials_unittest.py32 import tempfile
47 self._directory_path = tempfile.mkdtemp(**self._kwargs)
/external/protobuf/gtest/test/
Dgtest_test_utils.py40 import tempfile
136 _temp_dir = tempfile.mkdtemp()
/external/webkit/Tools/Scripts/webkitpy/style/
Dfilereader_unittest.py30 import tempfile
63 temp_dir = tempfile.mkdtemp()
/external/chromium/testing/gtest/test/
Dgtest_test_utils.py40 import tempfile
137 _temp_dir = tempfile.mkdtemp()

123