Lines Matching refs:rfd
173 static bool Proxy(BIO *socket, bool async, int control, int rfd, int wfd) { in Proxy() argument
242 ssize_t written = write_eintr(rfd, readbuf, read); in Proxy()
290 int rfd[2], wfd[2]; in RunHandshaker() local
301 if (pipe(rfd) != 0 || pipe(wfd) != 0) { in RunHandshaker()
326 posix_spawn_file_actions_addclose(&actions, rfd[1]) || in RunHandshaker()
330 assert(kFdControl != rfd[0]); in RunHandshaker()
337 if (rfd[0] != kFdProxyToHandshaker && in RunHandshaker()
338 posix_spawn_file_actions_adddup2(&actions, rfd[0], in RunHandshaker()
359 close(rfd[0]); in RunHandshaker()
361 ScopedFD rfd_closer(rfd[1]); in RunHandshaker()
369 bool ok = Proxy(bio, config->async, control[0], rfd[1], wfd[0]); in RunHandshaker()