Lines Matching full:splice
21 * Functional test for splice(2): pipe <-> socket
23 * This test case tests splice(2) from a pipe to a socket and vice versa
36 #include "lapi/splice.h"
37 #include "splice.h"
61 tst_res(TINFO, "splice size = %d", num_len_data);
86 ret = splice(pp1[0], NULL, sv[0], 0, i, 0);
88 tst_res(TFAIL | TERRNO, "splice error");
93 ret = splice(sv[1], 0, pp2[1], NULL, i, 0);
96 tst_res(TCONF, "splice does not support "
99 tst_res(TFAIL | TERRNO, "splice error");
113 tst_res(TPASS, "splice(2): pipe <-> socket run pass.");