Home | History | Annotate | Download | only in engines

Lines Matching defs:pipes

30 	int pipes[2];
378 return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
389 return splice_io_u(nd->pipes[0], io_u->file->fd, len);
427 return vmsplice_io_u(io_u, nd->pipes[0], len);
437 return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
1351 if (nd->pipes[0] != -1)
1352 close(nd->pipes[0]);
1353 if (nd->pipes[1] != -1)
1354 close(nd->pipes[1]);
1375 nd->pipes[0] = nd->pipes[1] = -1;
1396 if (pipe(nd->pipes) < 0)