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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
mkstemp.c 1 /* $NetBSD: mkstemp.c,v 1.9 2005/02/09 21:35:47 kleink Exp $ */
44 __RCSID("$NetBSD: mkstemp.c,v 1.9 2005/02/09 21:35:47 kleink Exp $");
63 __weak_alias(mkstemp,_mkstemp)
67 mkstemp(char *path)
tmpfile.c 74 fd = mkstemp(buf);
  /external/parameter-framework/upstream/test/tmpfile/posix/
TmpFile.cpp 46 int fd = mkstemp(path);
  /bionic/tests/
TemporaryFile.h 25 GenericTemporaryFile(T mk_fn = mkstemp) : mk_fn(mk_fn) {
36 GenericTemporaryFile(const char* dirpath, T mk_fn = mkstemp) : mk_fn(mk_fn) {
  /external/libcxx/test/support/
platform_support.h 64 int mkstemp(char*);
87 FD = mkstemp(&Name[0]);
89 perror("mkstemp");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
platform_support.h 64 int mkstemp(char*);
87 FD = mkstemp(&Name[0]);
89 perror("mkstemp");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
8-1.c 23 /* mkstemp is an XOPEN extension. */
41 fd1 = mkstemp(path);
43 perror("An error occurs when calling mkstemp()");
  /external/toolchain-utils/crosperf/
crosperf_test.py 36 filehandle, filename = tempfile.mkstemp()
  /external/toybox/toys/lsb/
mktemp.c 47 if (d_flag ? !mkdtemp(template) : mkstemp(template) == -1) {
  /external/mesa3d/src/compiler/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/toolchain-utils/user_activity_benchmarks/
benchmark_metrics_experiment_unittest.py 37 group_statistics_file, group_statistics_filename = tempfile.mkstemp()
41 function_statistics_file, function_statistics_filename = tempfile.mkstemp()
  /external/v8/tools/
android-run.py 50 (fd_out, outname) = tempfile.mkstemp()
51 (fd_err, errname) = tempfile.mkstemp()
79 (fd, fname) = tempfile.mkstemp()
  /bionic/libc/bionic/
lfs64_support.cpp 24 return mkstemp(path);
  /external/elfutils/tests/
newscn.c 43 fd = mkstemp (name);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlockall/
3-7.c 37 fd = mkstemp(filename);