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

1 2 3 4 5 6 7 8 91011

  /ndk/sources/host-tools/sed-4.2.1/lib/
mkstemp.c 40 mkstemp (template) function
stdlib.in.h 219 # define mkstemp rpl_mkstemp
220 extern int mkstemp (char * /*template*/);
222 /* On MacOS X 10.3, only <unistd.h> declares mkstemp. */
226 # undef mkstemp
227 # define mkstemp(t) \
228 (GL_LINK_WARNING ("mkstemp is unportable - " \
229 "use gnulib module mkstemp for portability"), \
230 mkstemp (t))
  /bionic/libc/bionic/
lfs64_support.cpp 24 return mkstemp(filename);
tmpfile.cpp 68 fd = mkstemp(path);
  /external/chromium_org/sandbox/linux/tests/
scoped_temporary_file.cc 26 fd_ = mkstemp(full_file_name_);
  /external/qemu/android/filesystems/testing/
TestSupport.cpp 43 int ret = HANDLE_EINTR(mkstemp(&result[0]));
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
compare_ir 48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
  /external/mesa3d/src/glsl/tests/
compare_ir 48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
  /external/chromium_org/v8/tools/
android-run.py 50 (fd_out, outname) = tempfile.mkstemp()
51 (fd_err, errname) = tempfile.mkstemp()
79 (fd, fname) = tempfile.mkstemp()
nacl-run.py 45 (fd_out, outname) = tempfile.mkstemp()
46 (fd_err, errname) = tempfile.mkstemp()
74 (fd, fname) = tempfile.mkstemp()
  /bionic/tests/
TemporaryFile.h 58 typedef GenericTemporaryFile<mkstemp> TemporaryFile;
  /external/chromium_org/tools/memory_inspector/memory_inspector/unittest/mock_adb/
mock_adb.py 25 (fd_num, self._cfg_file) = tempfile.mkstemp()
  /system/extras/tests/bionic/libstdc++/
test_cstdlib.cpp 55 using ::mkstemp;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_csv.py 121 fd, name = tempfile.mkstemp()
198 fd, name = tempfile.mkstemp()
311 fd, name = tempfile.mkstemp()
373 fd, name = tempfile.mkstemp()
395 fd, name = tempfile.mkstemp()
406 fd, name = tempfile.mkstemp()
417 fd, name = tempfile.mkstemp()
428 fd, name = tempfile.mkstemp()
439 fd, name = tempfile.mkstemp()
463 fd, name = tempfile.mkstemp()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_csv.py 121 fd, name = tempfile.mkstemp()
198 fd, name = tempfile.mkstemp()
311 fd, name = tempfile.mkstemp()
373 fd, name = tempfile.mkstemp()
395 fd, name = tempfile.mkstemp()
406 fd, name = tempfile.mkstemp()
417 fd, name = tempfile.mkstemp()
428 fd, name = tempfile.mkstemp()
439 fd, name = tempfile.mkstemp()
463 fd, name = tempfile.mkstemp()
    [all...]
  /external/chromium_org/v8/tools/testrunner/local/
commands.py 133 (fd_out, outname) = tempfile.mkstemp()
134 (fd_err, errname) = tempfile.mkstemp()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
toaiff.py 81 (fd, fname) = tempfile.mkstemp()
104 (fd, temp) = tempfile.mkstemp()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
toaiff.py 81 (fd, fname) = tempfile.mkstemp()
104 (fd, temp) = tempfile.mkstemp()
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
netlog_profiler.py 27 dump_file = tempfile.mkstemp()[1]
v8_profiler.py 28 dump_file = tempfile.mkstemp()[1]
  /bionic/libstdc++/include/
cstdlib 53 using ::mkstemp;
  /external/bison/darwin-lib/
stdlib.h 91 /* On Mac OS X 10.3, only <unistd.h> declares mkstemp. */
719 # define mkstemp rpl_mkstemp
721 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
722 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));
725 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
727 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));
729 _GL_CXXALIASWARN (mkstemp);
731 # undef mkstemp macro
733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable -
    [all...]
  /external/bison/linux-lib/
stdlib.h 91 /* On Mac OS X 10.3, only <unistd.h> declares mkstemp. */
719 # define mkstemp rpl_mkstemp
721 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
722 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));
725 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
727 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));
729 _GL_CXXALIASWARN (mkstemp);
731 # undef mkstemp macro
733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable -
    [all...]
  /ndk/sources/cxx-stl/gabi++/include/
cstdlib 55 using ::mkstemp;
  /ndk/sources/cxx-stl/system/include/
cstdlib 55 using ::mkstemp;

Completed in 518 milliseconds

1 2 3 4 5 6 7 8 91011