/external/qemu/android/utils/ |
D | tempfile.c | 56 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/ |
D | 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
|
/external/flac/libFLAC/ |
D | metadata_iterators.c | 127 …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/ |
D | waf_extensions.py | 36 import tempfile 37 (fd, filename) = tempfile.mkstemp() 51 (fd2, filename2) = tempfile.mkstemp()
|
/external/webkit/Tools/Scripts/ |
D | show-pretty-diff | 40 ($inputTempFileHandle, $inputPath) = tempfile( 55 my ($prettydiffFileHandle, $prettydiffPath) = tempfile(
|
D | new-run-webkit-httpd | 43 import tempfile 65 tempfile.gettempdir(),
|
D | run-bindings-tests | 36 import tempfile 82 work_directory = tempfile.mkdtemp()
|
D | new-run-webkit-websocketserver | 35 import tempfile 82 options.output_dir = tempfile.gettempdir()
|
/external/webkit/Tools/Scripts/webkitpy/common/ |
D | prettypatch.py | 30 import tempfile 44 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | file_lock_unittest.py | 28 import tempfile 38 self._lock_path = os.path.join(tempfile.gettempdir(), self._lock_name)
|
D | filesystem_unittest.py | 39 import tempfile 153 text_path = tempfile.mktemp(prefix='tree_unittest_') 154 binary_path = tempfile.mktemp(prefix='tree_unittest_')
|
D | filesystem.py | 39 import tempfile 158 self._directory_path = tempfile.mkdtemp(**self._kwargs) 195 temp_fd, temp_name = tempfile.mkstemp(suffix)
|
D | executive_unittest.py | 74 tempfile, temp_name = fs.open_binary_tempfile('') 75 tempfile.write(content) 76 tempfile.close()
|
/external/v8/tools/ |
D | disasm.py | 33 import tempfile 62 tmp_name = tempfile.mktemp(".v8code")
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
D | SerializationStressTest5.java | 124 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/ |
D | preparechangelogforrevert_unittest.py | 33 import tempfile 45 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on…
|
/external/blktrace/btt/ |
D | bno_plot.py | 41 import getopt, glob, os, sys, tempfile 92 tmpdir = tempfile.mktemp()
|
/external/clang/tools/scan-build/ |
D | set-xcode-analyzer | 11 import tempfile 24 t = tempfile.NamedTemporaryFile(delete=False)
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
D | changelog_unittest.py | 33 import tempfile 114 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on …
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | http_lock.py | 35 import tempfile 52 self._lock_path = tempfile.gettempdir()
|
/external/iptables/iptables/ |
D | iptables-apply | 113 COMMANDS=(tempfile "$SAVE" "$RESTORE") 124 TMPFILE=$(tempfile -p iptap)
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
D | credentials_unittest.py | 32 import tempfile 47 self._directory_path = tempfile.mkdtemp(**self._kwargs)
|
/external/protobuf/gtest/test/ |
D | gtest_test_utils.py | 40 import tempfile 136 _temp_dir = tempfile.mkdtemp()
|
/external/webkit/Tools/Scripts/webkitpy/style/ |
D | filereader_unittest.py | 30 import tempfile 63 temp_dir = tempfile.mkdtemp()
|
/external/chromium/testing/gtest/test/ |
D | gtest_test_utils.py | 40 import tempfile 137 _temp_dir = tempfile.mkdtemp()
|