Home | History | Annotate | Download | only in browser

Lines Matching defs:fd_

373   ScopedSocket() : fd_(-1) { Reset(); }
375 int fd() { return fd_; }
378 fd_ = SetupSocketOnly();
381 if (fd_ >= 0)
382 CloseSocket(fd_);
383 fd_ = -1;
386 int fd_;
467 fd_(fd),
477 CloseSocket(fd_);
507 const int fd_;
671 DCHECK_EQ(fd, fd_);
737 WriteToSocket(fd_, message, length);
740 if (shutdown(fd_, SHUT_WR) < 0)