HomeSort by relevance Sort by last modified time
    Searched defs:mkstemp (Results 1 - 14 of 14) sorted by null

  /ndk/sources/host-tools/sed-4.2.1/lib/
mkstemp.c 40 mkstemp (template) function
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 116 "warning: mktemp() possibly used unsafely; consider using mkstemp()");
125 mkstemp(char *path) function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
util.py 404 from tempfile import mkstemp namespace
405 (script_fd, script_name) = mkstemp(".py")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 404 from tempfile import mkstemp namespace
405 (script_fd, script_name) = mkstemp(".py")
  /external/bison/darwin-lib/
stdlib.h 91 /* On Mac OS X 10.3, only <unistd.h> declares mkstemp. */
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 macro
733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable -
    [all...]
  /external/bison/linux-lib/
stdlib.h 91 /* On Mac OS X 10.3, only <unistd.h> declares mkstemp. */
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 macro
733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable -
    [all...]
  /external/libmtp/src/
playlist-spl.c 101 # define mkstemp(_pattern) _open(_mktemp(_pattern), _O_CREAT | _O_SHORT_LIVED | _O_EXCL) macro
103 # error Missing mkstemp() function.
136 int fd = mkstemp(tmpname);
190 char tmpname[] = "/tmp/mtp-spl2pl-XXXXXX"; // must be a var since mkstemp modifies it
195 int fd = mkstemp(tmpname);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
stdlib.h 615 extern int mkstemp (char *__template) __nonnull ((1)) __wur;
618 extern int __REDIRECT (mkstemp, (char *__template), mkstemp64)
621 # define mkstemp mkstemp64 macro
630 /* Similar to mkstemp, but the template can have a suffix after the
663 mkstemp. But allow the caller to pass additional flags which are
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
stdlib.h 615 extern int mkstemp (char *__template) __nonnull ((1)) __wur;
618 extern int __REDIRECT (mkstemp, (char *__template), mkstemp64)
621 # define mkstemp mkstemp64 macro
630 /* Similar to mkstemp, but the template can have a suffix after the
663 mkstemp. But allow the caller to pass additional flags which are
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 23 "mkstemp", "mkdtemp", # low level safe interfaces
231 """Code common to mkstemp, TemporaryFile, and NamedTemporaryFile."""
270 def mkstemp(suffix="", prefix=template, dir=None, text=False): function
311 Arguments are as for mkstemp, except that the 'text' argument is
342 Arguments are as for mkstemp, except that the 'text' argument is
434 'prefix', 'suffix', 'dir' -- as for mkstemp.
438 The file is created as mkstemp() would do it.
472 'prefix', 'suffix', 'dir' -- as for mkstemp.
475 The file is created as mkstemp() would do it.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 23 "mkstemp", "mkdtemp", # low level safe interfaces
231 """Code common to mkstemp, TemporaryFile, and NamedTemporaryFile."""
270 def mkstemp(suffix="", prefix=template, dir=None, text=False): function
311 Arguments are as for mkstemp, except that the 'text' argument is
342 Arguments are as for mkstemp, except that the 'text' argument is
434 'prefix', 'suffix', 'dir' -- as for mkstemp.
438 The file is created as mkstemp() would do it.
472 'prefix', 'suffix', 'dir' -- as for mkstemp.
475 The file is created as mkstemp() would do it.
  /external/valgrind/main/coregrind/
m_libcfile.c 735 Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname ) function
759 VG_(printf)("VG_(mkstemp): trying: %s\n", buf);
765 VG_(umsg)("VG_(mkstemp): failed to create temp file: %s\n", buf);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_subprocess.py 32 mkstemp = tempfile.mkstemp variable
34 # tempfile.mkstemp is not available
35 def mkstemp(): function
36 """Replacement for mkstemp, calling mktemp."""
635 ifhandle, ifname = mkstemp()
636 ofhandle, ofname = mkstemp()
637 efhandle, efname = mkstemp()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_subprocess.py 32 mkstemp = tempfile.mkstemp variable
34 # tempfile.mkstemp is not available
35 def mkstemp(): function
36 """Replacement for mkstemp, calling mktemp."""
635 ifhandle, ifname = mkstemp()
636 ofhandle, ofname = mkstemp()
637 efhandle, efname = mkstemp()
    [all...]

Completed in 971 milliseconds