Lines Matching defs:result
33 int result;
37 result = pipe(pipefd1);
38 if (result == -1) {
46 result = pipe(pipefd2);
47 if (result == -1) {
51 result = tee(pipefd1[0], pipefd2[1], 32768, SPLICE_F_NONBLOCK);
52 if (result == -1) {
77 int result;
87 result = pipe(pipefd2);
88 if (result == -1) {
92 result = tee(fd, pipefd2[1], 32768, SPLICE_F_NONBLOCK);
93 if (result != -1) {