Home | History | Annotate | Download | only in engines

Lines Matching full:pipes

31 	int pipes[2];
381 return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
392 return splice_io_u(nd->pipes[0], io_u->file->fd, len);
430 return vmsplice_io_u(io_u, nd->pipes[0], len);
440 return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
1354 if (nd->pipes[0] != -1)
1355 close(nd->pipes[0]);
1356 if (nd->pipes[1] != -1)
1357 close(nd->pipes[1]);
1378 nd->pipes[0] = nd->pipes[1] = -1;
1399 if (pipe(nd->pipes) < 0)