Lines Matching defs:pipes
28 int pipes[2];
282 return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
293 return splice_io_u(nd->pipes[0], io_u->file->fd, len);
331 return vmsplice_io_u(io_u, nd->pipes[0], len);
341 return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
1183 if (nd->pipes[0] != -1)
1184 close(nd->pipes[0]);
1185 if (nd->pipes[1] != -1)
1186 close(nd->pipes[1]);
1207 nd->pipes[0] = nd->pipes[1] = -1;
1228 if (pipe(nd->pipes) < 0)