Searched defs:mkdtemp (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/mojo/tools/
H A Dcheck_mojom_golden_files.py11 from tempfile import mkdtemp namespace
67 out_dir = mkdtemp()
/external/chromium_org/base/
H A Dos_compat_android.cc107 // 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
/external/bison/darwin-lib/
H A Dstdlib.h638 _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");
/external/bison/linux-lib/
H A Dstdlib.h638 _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");
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem.py137 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)
H A Dfilesystem_mock.py241 def mkdtemp(self, **kwargs): member in class:MockFileSystem

Completed in 278 milliseconds