Home
last modified time | relevance | path

Searched refs:tmpfd (Results 1 – 4 of 4) 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.c105 int *tmpfd; local
372 tmpfd = realloc(fd, sizeof(*fd) * (size_t)(num_open.rlim_max));
373 if(tmpfd) {
374 fd = tmpfd;
375 tmpfd = NULL;
/external/autotest/server/
Dbase_utils.py98 tmpfd, tmpfile = tempfile.mkstemp(dir=tmpdir)
99 tmpfileobj = os.fdopen(tmpfd, 'w')
/external/toybox/toys/pending/
Ddiff.c181 int rd, wr, tmpfd = mkstemp(tmp_name); in read_stdin() local
183 if (tmpfd == -1) perror_exit("mkstemp"); in read_stdin()
191 wr = writeall(tmpfd, toybuf, rd); in read_stdin()
194 return fdopen(tmpfd, "r"); in read_stdin()