/external/chromium_org/native_client_sdk/src/tools/tests/ |
D | fix_deps_test.py | 7 import tempfile 26 self.tempfile = None 29 if self.tempfile: 30 os.remove(self.tempfile) 45 self.tempfile = tempfile.mktemp("_sdktest") 46 with open(self.tempfile, 'w') as out: 48 fix_deps.FixupDepFile(self.tempfile) 49 with open(self.tempfile) as infile: 58 self.tempfile = tempfile.mktemp("_sdktest") 59 with open(self.tempfile, 'w') as out: [all …]
|
/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/chromium_org/build/android/ |
D | adb_chrome_shell_command_line | 20 tempfile=$(tempfile) 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 23 rm $tempfile
|
D | adb_content_shell_command_line | 20 tempfile=$(tempfile) 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 23 rm $tempfile
|
D | adb_android_webview_command_line | 20 tempfile=$(tempfile) 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 23 rm $tempfile
|
/external/chromium_org/tools/gyp/test/mac/action-envvars/action/ |
D | action.gyp | 14 '<(SHARED_INTERMEDIATE_DIR)/tempfile', 17 'action': ['./action.sh', '<(SHARED_INTERMEDIATE_DIR)/tempfile' ], 21 '<(SHARED_INTERMEDIATE_DIR)/tempfile', 27 'action': ['cp', '<(SHARED_INTERMEDIATE_DIR)/tempfile',
|
/external/chromium_org/tools/profile_chrome/ |
D | trace_packager_unittest.py | 6 import tempfile 20 with tempfile.NamedTemporaryFile(delete=False) as f1, \ 21 tempfile.NamedTemporaryFile(delete=False) as f2: 27 with tempfile.NamedTemporaryFile() as output:
|
/external/chromium_org/build/android/gyp/ |
D | finalize_apk.py | 13 import tempfile 91 with tempfile.NamedTemporaryFile() as signed_apk_path_tmp, \ 92 tempfile.NamedTemporaryFile() as apk_to_sign_tmp, \ 93 tempfile.NamedTemporaryFile() as apk_without_descriptors_tmp, \ 94 tempfile.NamedTemporaryFile() as aligned_apk_tmp:
|
/external/chromium_org/build/android/gyp/util/ |
D | md5_check_test.py | 5 import tempfile 17 input_file1 = tempfile.NamedTemporaryFile() 18 input_file2 = tempfile.NamedTemporaryFile() 27 record_path = tempfile.NamedTemporaryFile(suffix='.stamp')
|
/external/skia/platform_tools/android/tests/ |
D | makefile_writer_tests.py | 16 import tempfile 129 f = tempfile.TemporaryFile() 139 fd, filename = tempfile.mkstemp() 157 fd, outfile = tempfile.mkstemp() 177 outdir = tempfile.mkdtemp() 186 outdir = tempfile.mkdtemp()
|
D | android_framework_gyp_tests.py | 15 import tempfile 31 self.__tmp_dir = tempfile.mkdtemp() 44 f = tempfile.mkstemp(dir=self.__tmp_dir)
|
/external/chromium_org/third_party/skia/platform_tools/android/tests/ |
D | makefile_writer_tests.py | 16 import tempfile 128 f = tempfile.TemporaryFile() 138 fd, filename = tempfile.mkstemp() 156 fd, outfile = tempfile.mkstemp() 176 outdir = tempfile.mkdtemp() 185 outdir = tempfile.mkdtemp()
|
D | android_framework_gyp_tests.py | 15 import tempfile 31 self.__tmp_dir = tempfile.mkdtemp() 44 f = tempfile.mkstemp(dir=self.__tmp_dir)
|
/external/fonttools/MetaTools/ |
D | roundTrip.py | 19 import tempfile 34 xmlFile1 = tempfile.mktemp(".%s.ttx1" % fn) 35 ttFile2 = tempfile.mktemp(".%s" % fn) 36 xmlFile2 = tempfile.mktemp(".%s.ttx2" % fn)
|
/external/chromium_org/v8/tools/ |
D | android-run.py | 42 import tempfile 50 (fd_out, outname) = tempfile.mkstemp() 51 (fd_err, errname) = tempfile.mkstemp() 79 (fd, fname) = tempfile.mkstemp()
|
D | nacl-run.py | 37 import tempfile 45 (fd_out, outname) = tempfile.mkstemp() 46 (fd_err, errname) = tempfile.mkstemp() 74 (fd, fname) = tempfile.mkstemp()
|
/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/chromium_org/tools/grit/grit/tool/ |
D | build_unittest.py | 11 import tempfile 27 output_dir = tempfile.mkdtemp() 37 output_dir = tempfile.mkdtemp() 61 output_dir = tempfile.mkdtemp()
|
/external/mesa3d/src/glsl/tests/ |
D | compare_ir | 32 import tempfile 48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1])) 49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
|
/external/chromium_org/third_party/mesa/src/src/glsl/tests/ |
D | compare_ir | 32 import tempfile 48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1])) 49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
|
/external/chromium_org/tools/grit/grit/node/ |
D | structure_unittest.py | 16 import tempfile 57 filename = node.Process(tempfile.gettempdir()) 58 with open(os.path.join(tempfile.gettempdir(), filename)) as f:
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/ |
D | build_compiler_runner_jar.py | 7 import tempfile 41 bin_path = tempfile.mkdtemp() 42 manifest_file = tempfile.NamedTemporaryFile(mode='wt', delete=False)
|
/external/chromium_org/third_party/closure_compiler/runner/ |
D | build_runner_jar.py | 10 import tempfile 45 bin_path = tempfile.mkdtemp() 46 manifest_file = tempfile.NamedTemporaryFile(mode='wt', delete=False)
|
/external/chromium_org/components/test/data/password_manager/ |
D | run_tests.py | 10 import tempfile 44 results = tempfile.NamedTemporaryFile( 45 dir=os.path.join(tempfile.gettempdir()), delete=False)
|