Searched refs:tmpfd (Results 1 – 5 of 5) sorted by relevance
/external/openssh/ |
D | auth-krb5.c | 243 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/ |
D | lib537.c | 103 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/autotest/server/ |
D | base_utils.py | 98 tmpfd, tmpfile = tempfile.mkstemp(dir=tmpdir) 99 tmpfileobj = os.fdopen(tmpfd, 'w')
|
/external/python/httplib2/tests/ |
D | test_cacerts_from_env.py | 26 tmpfd, tmpfile = tempfile.mkstemp()
|
/external/toybox/toys/pending/ |
D | diff.c | 184 int rd, wr, tmpfd = mkstemp(tmp_name); in read_stdin() local 186 if (tmpfd == -1) perror_exit("mkstemp"); in read_stdin() 194 wr = writeall(tmpfd, toybuf, rd); in read_stdin() 197 return fdopen(tmpfd, "r"); in read_stdin()
|