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

1 2 3 4 5 67 8 91011

  /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/chromium_org/chrome/test/chromedriver/test/
run_all_tests.py 34 _, log_path = tempfile.mkstemp(prefix='chromedriver_')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 188 temp_fd, temp_name = tempfile.mkstemp(suffix)
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/wayland/
wayland_sw_winsys.c 183 wldt->fd = mkstemp(filename);
  /external/chromium_org/third_party/skia/third_party/lua/src/
loslib.c 43 ** uses mkstemp.
50 e = mkstemp(b); \
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memfs_malloc.cc 49 #include <stdlib.h> // for mkstemp
227 int hugetlb_fd = mkstemp(path);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memfs_malloc.cc 49 #include <stdlib.h> // for mkstemp
227 int hugetlb_fd = mkstemp(path);
  /external/chromium_org/third_party/webrtc/test/testsupport/
fileutils.cc 182 int fd = ::mkstemp(tempname.get());
  /external/chromium_org/tools/android/file_poller/
file_poller.cc 141 fd = mkstemp(filename);
  /external/chromium_org/tools/telemetry/telemetry/page/
page_set_archive_info.py 73 temp_wpr_file_handle, temp_wpr_file_path = tempfile.mkstemp()
  /external/elfutils/0.153/src/
ranlib.c 246 int newfd = mkstemp (tmpfname);
  /external/lldb/source/Host/freebsd/
Host.cpp 93 int backtrace_fd = ::mkstemp (backtrace_path);
  /external/mesa3d/src/gallium/winsys/sw/wayland/
wayland_sw_winsys.c 183 wldt->fd = mkstemp(filename);
  /frameworks/webview/chromium/loader/
loader.cpp 73 int tmp_fd = TEMP_FAILURE_RETRY(mkstemp(relro_tmp));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
util.py 107 fdout, ccout = tempfile.mkstemp()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 230 (fd, tempname) = tempfile.mkstemp()
pipes.py 225 (fd, temp) = tempfile.mkstemp()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
util.py 107 fdout, ccout = tempfile.mkstemp()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 230 (fd, tempname) = tempfile.mkstemp()
pipes.py 225 (fd, temp) = tempfile.mkstemp()
  /system/core/libcutils/
fs.c 116 int fd = TEMP_FAILURE_RETRY(mkstemp(temp));
  /external/gtest/src/
gtest-port.cc 547 const int captured_fd = mkstemp(name_template);
560 const int captured_fd = mkstemp(name_template);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 228 fd, tmp_file = tempfile.mkstemp()
319 newFd, newFilePath = tempfile.mkstemp()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 228 fd, tmp_file = tempfile.mkstemp()
319 newFd, newFilePath = tempfile.mkstemp()
    [all...]

Completed in 775 milliseconds

1 2 3 4 5 67 8 91011