Home
last modified time | relevance | path

Searched refs:tempfilename (Results 1 – 3 of 3) sorted by relevance

/external/flac/libFLAC/
Dmetadata_iterators.c110 …fix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilename, FLAC__bool app…
111 …fix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilename, int fixup_is_l…
118 … *filename, const char *tempfile_path_prefix, FILE **tempfile, char **tempfilename, FLAC__Metadata…
119 static FLAC__bool transport_tempfile_(const char *filename, FILE **tempfile, char **tempfilename, F…
120 static void cleanup_tempfile_(FILE **tempfile, char **tempfilename);
1406 char *tempfilename; in chain_rewrite_file_() local
1419 if(!open_tempfile_(chain->filename, tempfile_path_prefix, &tempfile, &tempfilename, &status)) { in chain_rewrite_file_()
1453 if(!transport_tempfile_(chain->filename, &tempfile, &tempfilename, &status)) in chain_rewrite_file_()
1460 cleanup_tempfile_(&tempfile, &tempfilename); in chain_rewrite_file_()
2995 char *tempfilename = NULL; in rewrite_whole_file_() local
[all …]
/external/python/cpython3/Lib/idlelib/
Diomenu.py446 tempfilename = None
452 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
453 filename = tempfilename
455 if not self.writefile(tempfilename):
456 os.unlink(tempfilename)
483 if tempfilename:
484 os.unlink(tempfilename)
/external/python/cpython2/Lib/idlelib/
DIOBinding.py480 tempfilename = None
486 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
487 filename = tempfilename
489 if not self.writefile(tempfilename):
490 os.unlink(tempfilename)
517 if tempfilename:
518 os.unlink(tempfilename)