HomeSort by relevance Sort by last modified time
    Searched refs:mkstemp (Results 1 - 25 of 390) 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);
  /development/gsi/gsi_util/gsi_util/utils/
file_utils.py 31 **kwargs: Any keyward arguments passed to tempfile.mkstemp (e.g., dir,
37 fd, path = tempfile.mkstemp(**kwargs)
  /external/parameter-framework/upstream/test/tmpfile/posix/
TmpFile.cpp 46 int fd = mkstemp(path);
  /external/puffin/src/
unittest_common.cc 13 int mkstemp_fd = mkstemp(tmp_template);
  /bionic/tests/
TemporaryFile.h 25 explicit GenericTemporaryFile(T mk_fn = mkstemp) : mk_fn(mk_fn) {
36 explicit GenericTemporaryFile(const char* dirpath, T mk_fn = mkstemp) : mk_fn(mk_fn) {
  /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/libcxx/test/support/
platform_support.h 69 int mkstemp(char*);
92 FD = mkstemp(&Name[0]);
94 perror("mkstemp");
  /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]))
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
platform_support.h 67 int mkstemp(char*);
90 FD = mkstemp(&Name[0]);
92 perror("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);
tmpfile.cpp 53 fd = 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);
  /system/core/libcutils/
ashmem-host.cpp 41 int fd = mkstemp(pattern);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_csv.py 121 fd, name = tempfile.mkstemp()
198 fd, name = tempfile.mkstemp()
290 fd, name = tempfile.mkstemp()
352 fd, name = tempfile.mkstemp()
374 fd, name = tempfile.mkstemp()
385 fd, name = tempfile.mkstemp()
396 fd, name = tempfile.mkstemp()
407 fd, name = tempfile.mkstemp()
418 fd, name = tempfile.mkstemp()
442 fd, name = tempfile.mkstemp()
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 122 "warning: mktemp() possibly used unsafely; consider using mkstemp()");
137 mkstemp(char *path) function
141 DEF_WEAK(mkstemp); variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
toaiff.py 81 (fd, fname) = tempfile.mkstemp()
104 (fd, temp) = tempfile.mkstemp()

Completed in 1016 milliseconds

1 2 3 4 5 6 7 8 91011>>