/external/python/cpython2/Lib/test/ |
D | test_csv.py | 123 fd, name = tempfile.mkstemp() 136 fd, name = tempfile.mkstemp() 208 fd, name = tempfile.mkstemp() 321 fd, name = tempfile.mkstemp() 383 fd, name = tempfile.mkstemp() 405 fd, name = tempfile.mkstemp() 416 fd, name = tempfile.mkstemp() 427 fd, name = tempfile.mkstemp() 438 fd, name = tempfile.mkstemp() 449 fd, name = tempfile.mkstemp() [all …]
|
/external/v8/tools/ |
D | android-run.py | 50 (fd_out, outname) = tempfile.mkstemp() 51 (fd_err, errname) = tempfile.mkstemp() 79 (fd, fname) = tempfile.mkstemp()
|
/external/python/cpython2/Doc/library/ |
D | tempfile.rst | 23 now provides three new functions, :func:`NamedTemporaryFile`, :func:`mkstemp`, 41 The file is created using :func:`mkstemp`. It will be destroyed as soon 54 The *dir*, *prefix* and *suffix* parameters are passed to :func:`mkstemp`. 104 .. function:: mkstemp([suffix=''[, prefix='tmp'[, dir=None[, text=False]]]]) 114 Unlike :func:`TemporaryFile`, the user of :func:`mkstemp` is responsible 118 otherwise there will be no suffix. :func:`mkstemp` does not put a dot 137 :func:`mkstemp` returns a tuple containing an OS-level handle to an open 154 :func:`mkstemp`. 164 Use :func:`mkstemp` instead. 168 as for :func:`mkstemp`.
|
/external/mesa3d/src/compiler/glsl/tests/ |
D | compare_ir | 48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1])) 49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
|
/external/clang/test/Analysis/ |
D | security-syntax-checks.m | 185 // mkstemp() 190 int mkstemp(char *template); function 194 …mkstemp("XX"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format s… 195 mkstemp("XXXXXX"); 196 mkstemp("XXXXXXX"); 201 …mkstemp("X"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format st…
|
/external/libcxx/test/support/ |
D | platform_support.h | 69 int mkstemp(char*); 92 FD = mkstemp(&Name[0]); in get_temp_file_name()
|
/external/python/cpython3/Doc/library/ |
D | tempfile.rst | 21 context managers. :func:`mkstemp` and 37 …The file is created securely, using the same rules as :func:`mkstemp`. It will be destroyed as soon 56 defaults as with :func:`mkstemp`. 127 .. function:: mkstemp(suffix=None, prefix=None, dir=None, text=False) 137 Unlike :func:`TemporaryFile`, the user of :func:`mkstemp` is responsible 141 otherwise there will be no suffix. :func:`mkstemp` does not put a dot 167 :func:`mkstemp` returns a tuple containing an OS-level handle to an open 188 :func:`mkstemp`. 304 file immediately. This approach is used by :func:`mkstemp` and the 310 Use :func:`mkstemp` instead. [all …]
|
/external/tensorflow/tensorflow/python/keras/_impl/keras/ |
D | models_test.py | 57 fd, fname = tempfile.mkstemp('.h5') 99 fd, fname = tempfile.mkstemp('.h5') 130 fd, fname = tempfile.mkstemp('.h5') 150 fd, fname = tempfile.mkstemp('.h5') 168 fd, fname = tempfile.mkstemp('.h5') 185 fd, fname = tempfile.mkstemp('.h5') 203 fd, fname = tempfile.mkstemp('.h5')
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/ |
D | shell.py | 95 mkstemp = _tempfile.mkstemp variable 124 def mkstemp(suffix="", prefix=_tempfile.gettempprefix(), dir=None, function 154 fd, name = mkstemp('.py') 260 fd, name = mkstemp('.py')
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/ |
D | shell.py | 95 mkstemp = _tempfile.mkstemp variable 124 def mkstemp(suffix="", prefix=_tempfile.gettempprefix(), dir=None, function 154 fd, name = mkstemp('.py') 260 fd, name = mkstemp('.py')
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/ |
D | shell.py | 93 mkstemp = _tempfile.mkstemp variable 100 fd, name = mkstemp('.py') 178 fd, name = mkstemp('.py')
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/ |
D | shell.py | 93 mkstemp = _tempfile.mkstemp variable 100 fd, name = mkstemp('.py') 178 fd, name = mkstemp('.py')
|
/external/python/cpython2/Lib/plat-irix5/ |
D | torgb.py | 76 (fd, fname) = tempfile.mkstemp() 97 (fd, temp) = tempfile.mkstemp()
|
/external/python/cpython2/Lib/plat-irix6/ |
D | torgb.py | 76 (fd, fname) = tempfile.mkstemp() 97 (fd, temp) = tempfile.mkstemp()
|
/external/python/cpython2/Lib/ |
D | toaiff.py | 81 (fd, fname) = tempfile.mkstemp() 104 (fd, temp) = tempfile.mkstemp()
|
/external/autotest/server/cros/multimedia/ |
D | audio_facade_adapter.py | 78 _, client_file_path = tempfile.mkstemp( 189 _, remote_path = tempfile.mkstemp(
|
/external/toolchain-utils/cros_utils/ |
D | email_sender.py | 95 body_fd, body_filename = tempfile.mkstemp() 130 fd, fname = tempfile.mkstemp(suffix=report_suffix)
|
/external/autotest/server/brillo/ |
D | audio_utils.py | 122 _, local_filename = tempfile.mkstemp( 137 _, local_encoded_filename = tempfile.mkstemp(
|
/external/puffin/src/ |
D | unittest_common.cc | 13 int mkstemp_fd = mkstemp(tmp_template); in MakeTempFile()
|
/external/parameter-framework/upstream/test/tmpfile/posix/ |
D | TmpFile.cpp | 46 int fd = mkstemp(path); in mktmp()
|
/external/ltp/utils/sctp/func_tests/ |
D | test_1_to_1_socket_bind_listen.c | 147 fd = mkstemp(filename); in main() 262 fd = mkstemp(filename); in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
D | 8-1.c | 41 fd1 = mkstemp(path); in main()
|
/external/toolchain-utils/crosperf/ |
D | crosperf_test.py | 36 filehandle, filename = tempfile.mkstemp()
|
/external/clang/tools/scan-build-py/libscanbuild/ |
D | runner.py | 126 (handle, name) = tempfile.mkstemp(suffix=extension(opts), 164 (handle, name) = tempfile.mkstemp(prefix='report-',
|
/external/libmtp/src/ |
D | playlist-spl.c | 102 # define mkstemp(_pattern) _open(_mktemp(_pattern), _O_CREAT | _O_SHORT_LIVED | _O_EXCL) macro 104 # error Missing mkstemp() function. 137 int fd = mkstemp(tmpname); in spl_to_playlist_t() 196 int fd = mkstemp(tmpname); in playlist_t_to_spl()
|