HomeSort by relevance Sort by last modified time
    Searched refs:tempfile (Results 301 - 325 of 410) sorted by null

<<11121314151617

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
util.py 137 import shutil, tempfile namespace
138 tempdir = tempfile.mkdtemp(prefix='pymp-')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_contextlib.py 4 import tempfile namespace
253 tfn = tempfile.mktemp()
test_curses.py 12 import sys, tempfile, os namespace
170 fx = tempfile.TemporaryFile()
171 # cf tempfile.py TemporaryFile vs NamedTemporaryFile
test_pkg.py 5 import tempfile namespace
68 root = tempfile.mkdtemp()
test_socketserver.py 13 import tempfile namespace
98 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
test_urllib.py 9 import tempfile namespace
228 fd, tmp_file = tempfile.mkstemp()
319 newFd, newFilePath = tempfile.mkstemp()
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 229 import tempfile namespace
271 tempfile.template = 'testcmd.'
273 tempfile.template = 'testcmd.' + str(os.getpid()) + '.'
275 tempfile.template = 'testcmd.'
    [all...]
  /external/libedit/src/
vi.c 1008 char tempfile[] = "/tmp/histedit.XXXXXXXXXX"; local
1018 fd = mkstemp(tempfile);
1042 execlp("vi", "vi", tempfile, (char *)NULL);
1067 unlink(tempfile);
1074 unlink(tempfile);
  /external/chromium_org/sandbox/linux/services/
broker_process_unittest.cc 304 ScopedTemporaryFile tempfile; local
305 const char* tempfile_name = tempfile.full_file_name();
329 len = read(tempfile.fd(), buf, sizeof(buf));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 9 import tempfile namespace
228 fd, tmp_file = tempfile.mkstemp()
319 newFd, newFilePath = tempfile.mkstemp()
    [all...]
test_cgi.py 5 import tempfile namespace
225 f = TestReadlineFile(tempfile.TemporaryFile())
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 8 import tempfile namespace
31 os.path.realpath(tempfile.gettempdir()),
  /external/chromium_org/build/android/gyp/util/
build_utils.py 16 import tempfile namespace
29 dirname = tempfile.mkdtemp()
  /external/chromium_org/native_client_sdk/src/tools/tests/
create_nmf_test.py 11 import tempfile namespace
124 self.tempdir = tempfile.mkdtemp()
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_rendered_pictures.py 20 import tempfile namespace
161 tempdir = tempfile.mkdtemp()
  /external/chromium_org/third_party/skia/tools/skpdiff/
skpdiff_server.py 13 import tempfile namespace
232 image_output_dir = os.path.realpath(tempfile.mkdtemp('skpdiff'))
  /external/chromium_org/tools/
check_git_config.py 33 import tempfile namespace
264 tmp = tempfile.mkdtemp()
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 12 import tempfile namespace
336 tmp_fd, self.tmp_path = tempfile.mkstemp(
371 # tempfile.mkstemp uses an overly restrictive mode, resulting in a
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
android_platform_backend.py 6 import tempfile namespace
272 video_file_obj = tempfile.NamedTemporaryFile()
  /external/chromium_org/tools/win/split_link/
split_link.py 17 import tempfile namespace
211 temp = tempfile.NamedTemporaryFile(
  /external/jsoncpp/
makerelease.py 22 import tempfile namespace
163 fd, path = tempfile.mkstemp( **kwargs )
  /external/skia/tools/skpdiff/
skpdiff_server.py 13 import tempfile namespace
232 image_output_dir = os.path.realpath(tempfile.mkdtemp('skpdiff'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 30 import tempfile namespace
297 (fd, path) = tempfile.mkstemp(suffix=suffix, dir=self.logdir)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
util.py 404 from tempfile import mkstemp
407 from tempfile import mktemp
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 30 import tempfile namespace
297 (fd, path) = tempfile.mkstemp(suffix=suffix, dir=self.logdir)

Completed in 1679 milliseconds

<<11121314151617