HomeSort by relevance Sort by last modified time
    Searched full:tmpfd (Results 1 - 4 of 4) 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);
  /build/libs/host/
CopyFile.c 560 int tmpFd;
561 tmpFd = open(src, O_RDONLY | O_BINARY, 0);
562 if (tmpFd < 0) {
566 (void) close(tmpFd);
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 792 int TmpFD;
793 if (llvm::sys::fs::createUniqueFile(IndexPath + "-%%%%%%%%", TmpFD,
798 llvm::raw_fd_ostream Out(TmpFD, true);

Completed in 308 milliseconds