HomeSort by relevance Sort by last modified time
    Searched defs:mkdtemp (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/mojo/tools/
check_mojom_golden_files.py 11 from tempfile import mkdtemp namespace
67 out_dir = mkdtemp()
  /external/chromium_org/base/
os_compat_android.cc 107 // An implementation of mkdtemp, since it is not exposed by the NDK
110 // For any changes in the mkdtemp function, you should manually run the unittest
114 char* mkdtemp(char* path) { function
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 137 mkdtemp(char *path) function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
support.py 78 def mkdtemp(self): member in class:TempdirManager
83 d = tempfile.mkdtemp()
111 tmp_dir = self.mkdtemp()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
support.py 78 def mkdtemp(self): member in class:TempdirManager
83 d = tempfile.mkdtemp()
111 tmp_dir = self.mkdtemp()
  /external/bison/darwin-lib/
stdlib.h 638 _GL_FUNCDECL_SYS (mkdtemp, char *, (char * /*template*/) _GL_ARG_NONNULL ((1)));
640 _GL_CXXALIAS_SYS (mkdtemp, char *, (char * /*template*/));
641 _GL_CXXALIASWARN (mkdtemp);
643 # undef mkdtemp macro
645 _GL_WARN_ON_USE (mkdtemp, "mkdtemp is unportable - "
646 "use gnulib module mkdtemp for portability");
    [all...]
  /external/bison/linux-lib/
stdlib.h 638 _GL_FUNCDECL_SYS (mkdtemp, char *, (char * /*template*/) _GL_ARG_NONNULL ((1)));
640 _GL_CXXALIAS_SYS (mkdtemp, char *, (char * /*template*/));
641 _GL_CXXALIASWARN (mkdtemp);
643 # undef mkdtemp macro
645 _GL_WARN_ON_USE (mkdtemp, "mkdtemp is unportable - "
646 "use gnulib module mkdtemp for portability");
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 137 def mkdtemp(self, **kwargs): member in class:FileSystem
140 This is like tempfile.mkdtemp, but if used in a with statement
152 self._directory_path = tempfile.mkdtemp(**self._kwargs)
filesystem_mock.py 241 def mkdtemp(self, **kwargs): member in class:MockFileSystem
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 23 "mkstemp", "mkdtemp", # low level safe interfaces
307 def mkdtemp(suffix="", prefix=template, dir=None): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 23 "mkstemp", "mkdtemp", # low level safe interfaces
307 def mkdtemp(suffix="", prefix=template, dir=None): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shutil.py 68 def mkdtemp(self): member in class:TestShutil
73 d = tempfile.mkdtemp()
154 src_dir = tempfile.mkdtemp()
155 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
203 src_dir = tempfile.mkdtemp()
205 dst_dir = join(tempfile.mkdtemp(), 'destination')
348 tmpdir = self.mkdtemp()
375 tmpdir = self.mkdtemp()
381 tmpdir2 = self.mkdtemp()
423 tmpdir = self.mkdtemp()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shutil.py 68 def mkdtemp(self): member in class:TestShutil
73 d = tempfile.mkdtemp()
154 src_dir = tempfile.mkdtemp()
155 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
203 src_dir = tempfile.mkdtemp()
205 dst_dir = join(tempfile.mkdtemp(), 'destination')
348 tmpdir = self.mkdtemp()
375 tmpdir = self.mkdtemp()
381 tmpdir2 = self.mkdtemp()
423 tmpdir = self.mkdtemp()
    [all...]

Completed in 233 milliseconds