Lines Matching refs:sv
386 int sv[2];
585 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, sv) == -1)
603 close(sv[0]);
604 dup2(sv[1], STDIN_FILENO);
605 dup2(sv[1], STDOUT_FILENO);
607 close(sv[1]);
634 close(sv[1]);
636 /* parent: read from stdin (bozo_read()) write to sv[0] */
637 /* child: read from sv[0] (bozo_write()) write to stdout */
644 finish_cgi_output(httpd, request, sv[0], nph);
659 wbytes = write(sv[0], buf, (size_t)rbytes);