Home
last modified time | relevance | path

Searched refs:pipe_peer (Results 1 – 2 of 2) sorted by relevance

/xnu-11215.1.10/bsd/kern/
H A Dsys_pipe.c425 rpipe->pipe_peer = wpipe; in pipe()
426 wpipe->pipe_peer = rpipe; in pipe()
480 if (cpipe->pipe_peer) { in pipe_stat()
482 pipe_size = MAX_PIPESIZE(cpipe->pipe_peer); in pipe_stat()
483 pipe_count = cpipe->pipe_peer->pipe_buffer.cnt; in pipe_stat()
893 pipeselwakeup(rpipe, rpipe->pipe_peer); in pipe_read()
928 wpipe = rpipe->pipe_peer; in pipe_write()
1255 wpipe = rpipe->pipe_peer; in pipe_select()
1362 if (mac_pipe_label(cpipe) != NULL && cpipe->pipe_peer == NULL) { in pipeclose()
1370 if ((ppipe = cpipe->pipe_peer) != NULL) { in pipeclose()
[all …]
/xnu-11215.1.10/bsd/sys/
H A Dpipe.h162 struct pipe *pipe_peer; /* link with other direction */ member