Home | History | Annotate | Download | only in jsonrpc

Lines Matching defs:pipe

82 	cli, srv := net.Pipe()
98 cli, srv := net.Pipe()
114 cli, srv := net.Pipe()
142 cli, srv := net.Pipe()
205 cli, srv := net.Pipe()
244 cli, srv := net.Pipe()
250 cli, srv := net.Pipe()
305 func myPipe() (*pipe, *pipe) {
306 r1, w1 := io.Pipe()
307 r2, w2 := io.Pipe()
309 return &pipe{r1, w2}, &pipe{r2, w1}
312 type pipe struct {
320 return "pipe"
324 return "pipe"
327 func (p *pipe) Close() error {
336 func (p *pipe) LocalAddr() net.Addr {
340 func (p *pipe) RemoteAddr() net.Addr {
344 func (p *pipe) SetTimeout(nsec int64) error {
345 return errors.New("net.Pipe does not support timeouts")
348 func (p *pipe) SetReadTimeout(nsec int64) error {
349 return errors.New("net.Pipe does not support timeouts")
352 func (p *pipe) SetWriteTimeout(nsec int64) error {
353 return errors.New("net.Pipe does not support timeouts")