HomeSort by relevance Sort by last modified time
    Searched refs:mkstemp (Results 201 - 225 of 251) sorted by null

1 2 3 4 5 6 7 891011

  /external/e2fsprogs/lib/ext2fs/
icount.c 194 fd = mkstemp(fn);
  /external/qemu/util/
qemu-sockets.c 563 * Using mkstemp() doesn't make things more secure here
568 fd = mkstemp(un.sun_path); close(fd);
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 556 const int captured_fd = mkstemp(name_template);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 490 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /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/idlelib/
IOBinding.py 490 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /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.
  /ndk/sources/host-tools/make-3.81/
main.c 849 extern int mkstemp PARAMS ((char *template));
867 /* It's safest to use mkstemp(), if we can. */
868 fd = mkstemp (*name);
880 /* Can't use mkstemp(), but guard against a race condition. */
    [all...]
  /bootable/recovery/applypatch/
imgdiff.c 617 mkstemp(ptemp);
    [all...]
  /external/chromium_org/base/files/
file_util_posix.cc 150 ThreadRestrictions::AssertIOAllowed(); // For call to mkstemp().
153 // this should be OK since mkstemp just replaces characters in place
156 return HANDLE_EINTR(mkstemp(buffer));
  /external/chromium_org/testing/gtest/src/
gtest-port.cc     [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
xcode.py 438 tempfile.mkstemp(suffix='.tmp', prefix='project.pbxproj.gyp.',
464 # tempfile.mkstemp uses an overly restrictive mode, resulting in a
    [all...]
  /external/chromium_org/tools/valgrind/
valgrind_test.py 436 (fd, indirect_fname) = tempfile.mkstemp(dir=self.log_dir,
    [all...]
  /external/libedit/src/
vi.c 1018 fd = mkstemp(tempfile);
readline.c 1189 if ((fd = mkstemp(template)) == -1) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
ccompiler.py 745 fd, fname = tempfile.mkstemp(".c", funcname, text=True)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tempfile.py 77 "mkstemp" : 1,
460 """Test mkstemp()."""
466 (fd, name) = tempfile.mkstemp(dir=dir, prefix=pre, suffix=suf)
472 self.failOnException("mkstemp")
481 # mkstemp can create files
490 # mkstemp can create directories in a user-selected directory
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
ccompiler.py 745 fd, fname = tempfile.mkstemp(".c", funcname, text=True)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tempfile.py 77 "mkstemp" : 1,
460 """Test mkstemp()."""
466 (fd, name) = tempfile.mkstemp(dir=dir, prefix=pre, suffix=suf)
472 self.failOnException("mkstemp")
481 # mkstemp can create files
490 # mkstemp can create directories in a user-selected directory
  /external/chromium_org/third_party/cython/src/Cython/Debugger/
libpython.py     [all...]
  /external/valgrind/main/coregrind/
m_main.c     [all...]
  /build/tools/releasetools/
common.py 671 fd, fn = tempfile.mkstemp(prefix=prefix, suffix=suffix)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/test/
run_py_tests.py     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
compute.c 112 fd = mkstemp(tmp);
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
test_scripts.py 348 handle, name = tempfile.mkstemp()
    [all...]

Completed in 714 milliseconds

1 2 3 4 5 6 7 891011