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

1 2

  /system/core/base/
test_utils.cpp 35 int mkstemp(char* template_name) { function
87 fd = mkstemp(path);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 124 "warning: mktemp() possibly used unsafely; consider using mkstemp()");
139 mkstemp(char *path) function
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_tempfile.py 91 >storage area. The file is created using mkstemp. It will be destroyed as
103 >The dir, prefix and suffix parameters are passed to mkstemp()
143 temp = self.mkstemp(suffix=suffix, prefix=prefix, dir=dir)
152 def mkstemp(self, suffix='', prefix=None, dir=None, text=False): member in class:FakeTempfileModule
157 Python 2.4.1 tempfile.mkstemp.__doc__ =
158 >mkstemp([suffix, [prefix, [dir, [text]]]])
255 # python -c 'import tempfile; tempfile.mkstemp(dir="/no/such/dr")'
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py3/
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/rjsmin/_setup/py3/
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/py2/
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/py2/
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/pyfakefs/pyfakefs/
fake_tempfile.py 92 >storage area. The file is created using mkstemp. It will be destroyed as
104 >The dir, prefix and suffix parameters are passed to mkstemp()
144 temp = self.mkstemp(suffix=suffix, prefix=prefix, dir=dir)
153 def mkstemp(self, suffix='', prefix=None, dir=None, text=False): member in class:FakeTempfileModule
158 Python 2.4.1 tempfile.mkstemp.__doc__ =
159 >mkstemp([suffix, [prefix, [dir, [text]]]])
256 # python -c 'import tempfile; tempfile.mkstemp(dir="/no/such/dr")'
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
util.py 404 from tempfile import mkstemp namespace
405 (script_fd, script_name) = mkstemp(".py")
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
util.py 404 from tempfile import mkstemp namespace
405 (script_fd, script_name) = mkstemp(".py")
  /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.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/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 620 extern int mkstemp (char *__template) __nonnull ((1)) __wur;
623 extern int __REDIRECT (mkstemp, (char *__template), mkstemp64)
626 # define mkstemp mkstemp64 macro
635 /* Similar to mkstemp, but the template can have a suffix after the
668 mkstemp. But allow the caller to pass additional flags which are
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/coregrind/
m_libcfile.c 886 Int VG_(mkstemp) ( const HChar* part_of_name, /*OUT*/HChar* fullname ) function
910 VG_(printf)("VG_(mkstemp): trying: %s\n", fullname);
916 VG_(umsg)("VG_(mkstemp): failed to create temp file: %s\n", fullname);
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]

Completed in 1051 milliseconds

1 2