Searched defs:pipe (Results 1 – 9 of 9) sorted by relevance
105 struct pipe { struct106 kmutex_t *pipe_lock; /* pipe mutex */ argument107 kcondvar_t pipe_rcv; /* cv for readers */ argument108 kcondvar_t pipe_wcv; /* cv for writers */ argument109 kcondvar_t pipe_draincv; /* cv for close */ argument110 kcondvar_t pipe_lkcv; /* locking */ argument111 struct pipebuf pipe_buffer; /* data storage */ argument112 struct pipemapping pipe_map; /* pipe mapping for direct I/O */ argument113 struct selinfo pipe_sel; /* for compat with select */ argument114 struct timespec pipe_atime; /* time of last access */ argument[all …]
9 __weak_alias(pipe, _pipe) in __weak_alias() argument28 pipe(int fild[2]) in pipe() function
47 ATF_TC_HEAD(pipe, tc) in ATF_TC_HEAD() argument51 ATF_TC_BODY(pipe, tc) in ATF_TC_BODY() argument
12 pipe(filedes) in pipe() function
24 void pipe(int arg) { in pipe() function
139 MD5Filter(int pipe) in MD5Filter()
420 FILE *pipe; in unix_cmd() local
331 #define pipe(fds) _pipe((fds), _PIPE_BUFFER_SZ, O_BINARY); macro
59 #define pipe _pipe macro