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

1 2 3 4 5 6 78 91011

  /bionic/tests/
stdlib_test.cpp 165 TEST(stdlib, mkstemp) {
  /external/chromium_org/media/tools/constrained_network_server/
cns_test.py 190 f, self._file = tempfile.mkstemp(dir=os.getcwd())
  /external/chromium_org/ppapi/tests/
test_broker.cc 159 int fd = ::mkstemp(file_name);
  /external/clang/bindings/python/tests/cindex/
test_translation_unit.py 97 _, path = tempfile.mkstemp()
  /external/elfutils/0.153/src/
ar.c 623 xfd = mkstemp (tempfname);
780 int newfd = mkstemp (tmpfname);
1019 int newfd = mkstemp (tmpfname);
    [all...]
  /external/qemu/android/utils/
filelock.c 55 ** temp - a temporary file made unique with mkstemp
226 temp_fd = mkstemp(lock->temp);
  /build/tools/releasetools/
blockimgdiff.py 35 srcfd, srcfile = tempfile.mkstemp(prefix="src-")
36 tgtfd, tgtfile = tempfile.mkstemp(prefix="tgt-")
37 patchfd, patchfile = tempfile.mkstemp(prefix="patch-")
  /art/runtime/
common_runtime_test.cc 60 int fd = mkstemp(&filename_[0]);
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-port.cc 513 const int captured_fd = mkstemp(name_template);
  /external/chromium_org/third_party/webrtc/base/
unixfilesystem.cc 212 int fd = ::mkstemp(tempname);
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 336 tmp_fd, self.tmp_path = tempfile.mkstemp(
371 # tempfile.mkstemp uses an overly restrictive mode, resulting in a
  /external/e2fsprogs/e2fsck/
dirinfo.c 64 fd = mkstemp(db->tdb_fn);
  /external/jsoncpp/
makerelease.py 163 fd, path = tempfile.mkstemp( **kwargs )
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
trace-event-info.c 519 if (!mkstemp(tdata->temp_file)) {
  /external/mesa3d/src/gtest/src/
gtest-port.cc 513 const int captured_fd = mkstemp(name_template);
  /external/protobuf/gtest/src/
gtest-port.cc 467 const int captured_fd = mkstemp(name_template);
  /external/qemu/util/
qemu-sockets-android.c 502 * Using mkstemp() doesn't make things more secure here
507 fd = mkstemp(unpath); close(fd);
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 231 int fd = mkstemp(localTmpFileName);
  /ndk/sources/host-tools/sed-4.2.1/sed/
utils.c 225 fd = mkstemp (template);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 297 (fd, path) = tempfile.mkstemp(suffix=suffix, dir=self.logdir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 297 (fd, path) = tempfile.mkstemp(suffix=suffix, dir=self.logdir)
  /system/core/init/
property_service.c 166 fd = mkstemp(tempPath);
  /ndk/sources/host-tools/sed-4.2.1/lib/
gnulib.mk 12 # Reproduce by: gnulib-tool --import --dir=. --local-dir=gl --lib=libsed --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --no-libtool --macro-prefix=gl acl alloca btowc c-ctype extensions getline getopt gettext localcharset mbrlen mbrtowc mbsinit memchr mkstemp obstack pathmax regex rename selinux-h stat-macros stdbool strerror strverscmp unlocked-io verify wcrtomb wctob
443 ## begin gnulib module mkstemp
446 EXTRA_DIST += mkstemp.c
448 EXTRA_libsed_a_SOURCES += mkstemp.c
450 ## end gnulib module mkstemp
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/
test_libcython_in_gdb.py 341 self.fd, self.tmpfilename = tempfile.mkstemp()
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 136 .Case("mkstemp", &WalkAST::checkCall_mkstemp)
378 // Check: Any use of 'mktemp' is insecure. It is obsoleted by mkstemp().
414 "creates or uses insecure temporary file. Use 'mkstemp' "
421 // Check: Use of 'mkstemp', 'mktemp', 'mkdtemp' should contain at least 6 X's.
432 .Case("mkstemp", std::make_pair(0,-1))
770 REGISTER_CHECKER(mkstemp)

Completed in 2286 milliseconds

1 2 3 4 5 6 78 91011