Lines Matching refs:ret
39 int ret = ppoll(pollfds, 1, &timeout, NULL);
40 EXPECT_GT("ppoll_0100", ret, CMPFLAG);
43 ret = access("ppoll_function_file", F_OK);
44 if (ret != -1) {
45 ret = remove("ppoll_function_file");
46 EXPECT_EQ("ppoll_0100", ret, CMPFLAG);
62 int ret = ppoll(pollfds, 1, &timeout, NULL);
63 EXPECT_EQ("ppoll_0200", ret, CMPFLAG);
77 int ret = ppoll(NULL, 1, &timeout, NULL);
78 EXPECT_EQ("ppoll_0300", ret, ERREXPECT);