/external/v8/tools/ |
D | android-run.py | 50 (fd_out, outname) = tempfile.mkstemp() 51 (fd_err, errname) = tempfile.mkstemp() 79 (fd, fname) = tempfile.mkstemp()
|
D | nacl-run.py | 46 (fd_out, outname) = tempfile.mkstemp() 47 (fd_err, errname) = tempfile.mkstemp() 75 (fd, fname) = tempfile.mkstemp()
|
/external/libcxx/test/support/ |
D | platform_support.h | 66 int mkstemp(char*); 86 FD = mkstemp(&Name[0]); in get_temp_file_name()
|
/external/bison/lib/ |
D | stdlib.in.h | 397 # define mkstemp rpl_mkstemp 399 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); 400 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/)); 403 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); 405 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/)); 407 _GL_CXXALIASWARN (mkstemp); 409 # undef mkstemp 411 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
|
/external/mesa3d/src/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/bison/linux-lib/ |
D | stdlib.h | 719 # define mkstemp rpl_mkstemp 721 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); 722 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/)); 725 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); 727 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/)); 729 _GL_CXXALIASWARN (mkstemp); 731 # undef mkstemp 733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
|
/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/bison/darwin-lib/ |
D | stdlib.h | 719 # define mkstemp rpl_mkstemp 721 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); 722 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/)); 725 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); 727 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/)); 729 _GL_CXXALIASWARN (mkstemp); 731 # undef mkstemp 733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
|
/external/selinux/libsepol/cil/src/ |
D | cil_policy.c | 1203 file_arr[CLASS_DECL] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1207 file_arr[ISIDS] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1211 file_arr[COMMONS] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1215 file_arr[CLASSES] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1219 file_arr[INTERFACES] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1223 file_arr[SENS] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1227 file_arr[CATS] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1231 file_arr[LEVELS] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1235 file_arr[CONSTRAINS] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() 1239 file_arr[TYPEATTRTYPES] = fdopen(mkstemp(temp), "w+"); in cil_gen_policy() [all …]
|
/external/autotest/server/cros/multimedia/ |
D | audio_facade_adapter.py | 68 _, client_file_path = tempfile.mkstemp( 164 _, remote_path = tempfile.mkstemp(
|
/external/chromium-trace/catapult/third_party/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/third_party/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/third_party/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/chromium-trace/catapult/third_party/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/telemetry/third_party/pyfakefs/pyfakefs/ |
D | fake_tempfile_test.py | 135 temporary = self.tempfile.mkstemp() 148 self.assertRaises(OSError, self.tempfile.mkstemp, dir='/dir') 152 temporary = self.tempfile.mkstemp(dir='/dir')
|
D | fake_tempfile.py | 143 temp = self.mkstemp(suffix=suffix, prefix=prefix, dir=dir) 152 def mkstemp(self, suffix='', prefix=None, dir=None, text=False): member in FakeTempfileModule
|
/external/v8/build/config/mac/ |
D | gen_plist.py | 132 fd, name = tempfile.mkstemp() 143 fd, name = tempfile.mkstemp()
|
/external/parameter-framework/upstream/test/tmpfile/posix/ |
D | TmpFile.cpp | 46 int fd = mkstemp(path); in mktmp()
|
/external/bison/djgpp/ |
D | subpipe.c | 83 fd = mkstemp(tmp_file_name[0]); in init_subpipe() 90 fd = mkstemp(tmp_file_name[1]); in init_subpipe()
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/ |
D | unit_testcase.py | 83 fd, self.stdout_file = tempfile.mkstemp() 85 fd, self.stderr_file = tempfile.mkstemp() 93 fd, self.log_handler_file = tempfile.mkstemp()
|
/external/autotest/server/brillo/feedback/ |
D | closed_loop_audio_client.py | 105 _, self.orig_policy = tempfile.mkstemp(dir=self.tmp_dir) 110 _, test_policy = tempfile.mkstemp(dir=self.tmp_dir) 219 _, local_rec_filename = tempfile.mkstemp(
|
/external/elfutils/tests/ |
D | newscn.c | 43 fd = mkstemp (name); in main()
|
/external/toybox/toys/lsb/ |
D | mktemp.c | 47 if (d_flag ? !mkdtemp(template) : mkstemp(template) == -1) {
|
/external/libcxx/test/libcxx/ |
D | util.py | 17 handle, name = tempfile.mkstemp(suffix=suffix, prefix=prefix, dir=dir)
|
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/ |
D | fake_tempfile.py | 144 temp = self.mkstemp(suffix=suffix, prefix=prefix, dir=dir) 153 def mkstemp(self, suffix='', prefix=None, dir=None, text=False): member in FakeTempfileModule
|