Home
last modified time | relevance | path

Searched refs:tmpfd (Results 1 – 6 of 6) sorted by relevance

/external/openssh/
Dauth-krb5.c243 int tmpfd, ret, oerrno; in ssh_krb5_cc_gen() local
253 tmpfd = mkstemp(ccname + strlen("FILE:")); in ssh_krb5_cc_gen()
256 if (tmpfd == -1) { in ssh_krb5_cc_gen()
261 if (fchmod(tmpfd,S_IRUSR | S_IWUSR) == -1) { in ssh_krb5_cc_gen()
264 close(tmpfd); in ssh_krb5_cc_gen()
267 close(tmpfd); in ssh_krb5_cc_gen()
/external/curl/tests/libtest/
Dlib537.c103 int *tmpfd; local
370 tmpfd = realloc(fd, sizeof(*fd) * (size_t)(num_open.rlim_max));
371 if(tmpfd) {
372 fd = tmpfd;
373 tmpfd = NULL;
/external/rust/crates/nix/test/
Dtest_unistd.rs513 let tmpfd = tmp.into_raw_fd(); in test_lseek() localVariable
516 lseek(tmpfd, offset, Whence::SeekSet).unwrap(); in test_lseek()
519 crate::read_exact(tmpfd, &mut buf); in test_lseek()
522 close(tmpfd).unwrap(); in test_lseek()
531 let tmpfd = tmp.into_raw_fd(); in test_lseek64() localVariable
533 lseek64(tmpfd, 5, Whence::SeekSet).unwrap(); in test_lseek64()
536 crate::read_exact(tmpfd, &mut buf); in test_lseek64()
539 close(tmpfd).unwrap(); in test_lseek64()
675 let tmpfd = { in test_ftruncate() localVariable
682 ftruncate(tmpfd, 2).unwrap(); in test_ftruncate()
[all …]
/external/autotest/server/
Dbase_utils.py104 tmpfd, tmpfile = tempfile.mkstemp(dir=tmpdir)
105 tmpfileobj = os.fdopen(tmpfd, 'w')
/external/python/httplib2/tests/
Dtest_cacerts_from_env.py26 tmpfd, tmpfile = tempfile.mkstemp()
/external/toybox/toys/pending/
Ddiff.c186 int tmpfd = xtempfile("stdin", &tmp_name); in read_stdin() local
191 xsendfile(0, tmpfd); in read_stdin()
192 return fdopen(tmpfd, "r"); in read_stdin()