Lines Matching refs:result
151 #define PROTECT_REGION_END(result, errval) \
156 (result) = WEXITSTATUS(kid_status); \
158 (result) = (errval); \
296 /* RES_PASS indicates a PASS result */
300 * RES_FAIL_* indicates a FAIL result
302 * failure. The return value (result = epoll_ctl(...)) and
474 int result;
484 returns -1 in the variable result if a protection violation
485 occurs (see PROTECT_REGION_END for the result) */
491 result =
565 if (result == 0) {
568 } else if (result == -1) { /* The return value is -1, so it's not bad */
578 if (result == 0) {
580 } else if (result == -1) {
604 if (result == 0) {
606 } else if (result == -1) {
637 the result parameter. If the region caused
639 then the result is set to the second parameter's
641 PROTECT_REGION_END(result, -1);
646 /* Now test the result */
647 if (!((result == RES_PASS)
648 || (result ==
651 if (result >
655 /* Returned a result which has no corresponding text description */
659 if (result == -1) /* Segfault during epoll_ctl call */
664 ((result_strings[result]));
669 EPOLL_CTL_TEST_PASS((result_strings[result]));