HomeSort by relevance Sort by last modified time
    Searched refs:mkstemp (Results 276 - 300 of 390) sorted by null

<<111213141516

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
template.py 163 tempfile.mkstemp(
691 (dest, name) = tempfile.mkstemp(dir=os.path.dirname(outputpath))
  /external/mesa3d/src/gtest/src/
gtest-port.cc 556 const int captured_fd = mkstemp(name_template);
  /external/python/cpython2/Lib/idlelib/
IOBinding.py 486 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /external/python/cpython2/Lib/
tempfile.py 23 "mkstemp", "mkdtemp", # low level safe interfaces
236 """Code common to mkstemp, TemporaryFile, and NamedTemporaryFile."""
280 def mkstemp(suffix="", prefix=template, dir=None, text=False): function
321 Arguments are as for mkstemp, except that the 'text' argument is
357 Arguments are as for mkstemp, except that the 'text' argument is
451 'prefix', 'suffix', 'dir' -- as for mkstemp.
455 The file is created as mkstemp() would do it.
494 'prefix', 'suffix', 'dir' -- as for mkstemp.
497 The file is created as mkstemp() would do it.
  /external/python/cpython3/Lib/idlelib/
iomenu.py 452 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /external/python/cpython3/Lib/
tempfile.py 12 >>> tempfile.mkstemp()
29 "mkstemp", "mkdtemp", # low level safe interfaces
250 """Code common to mkstemp, TemporaryFile, and NamedTemporaryFile."""
305 def mkstemp(suffix=None, prefix=None, dir=None, text=False): function
349 Arguments are as for mkstemp, except that the 'text' argument is
388 Arguments are similar to mkstemp, except that the 'text' argument is
527 'prefix', 'suffix', 'dir' -- as for mkstemp.
533 The file is created as mkstemp() would do it.
576 'prefix', 'suffix', 'dir' -- as for mkstemp.
581 The file is created as mkstemp() would do it
    [all...]
  /external/toolchain-utils/binary_search_tool/
binary_search_state.py 345 _, path = tempfile.mkstemp(prefix=HIDDEN_STATE_FILE, dir='.')
  /external/toolchain-utils/
repo_to_repo.py 143 client_name += tempfile.mkstemp()[1].replace('/', '-')
  /external/valgrind/coregrind/m_gdbserver/
target.c 605 Int fd = VG_(mkstemp) (getoff, outfile);
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
IOBinding.py 490 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /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/idlelib/
IOBinding.py 490 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /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/ndk/r16/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.
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
VolInfo.c     [all...]
  /external/python/cpython3/Lib/test/
test_urllib.py 400 fd, tmp_file = tempfile.mkstemp()
595 newFd, newFilePath = tempfile.mkstemp()
    [all...]
test_logging.py 542 fd, fn = tempfile.mkstemp()
597 fd, fn = tempfile.mkstemp()
634 fd, fn = tempfile.mkstemp('.log', 'test_logging-3-')
    [all...]
  /external/valgrind/coregrind/
m_main.c     [all...]
  /art/runtime/
common_runtime_test.cc 85 int fd = mkstemp(&filename_[0]);
  /bionic/tests/
stdlib_test.cpp 398 TEST(stdlib, mkstemp) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
ccompiler.py     [all...]

Completed in 1136 milliseconds

<<111213141516