HomeSort by relevance Sort by last modified time
    Searched refs:tmpfd (Results 1 - 3 of 3) sorted by null

  /external/openssh/openbsd-compat/
xmmap.c 64 int tmpfd; local
68 tmpfd = mkstemp(tmpname);
70 if (tmpfd == -1)
74 if (ftruncate(tmpfd, size) != 0)
77 tmpfd, (off_t)0);
78 close(tmpfd);
  /external/openssh/
auth-krb5.c 229 int tmpfd, ret; local
239 tmpfd = mkstemp(ccname + strlen("FILE:"));
241 if (tmpfd == -1) {
246 if (fchmod(tmpfd,S_IRUSR | S_IWUSR) == -1) {
248 close(tmpfd);
251 close(tmpfd);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
port_testcase.py 108 tmpfd, tmpfile = port._filesystem.open_binary_tempfile('')
109 tmpfd.close()

Completed in 41 milliseconds