Lines Matching defs:reInt
43 int reInt[4] = {0, 1, 100, 255};
45 for (int i = 0; i < sizeof(reInt) / sizeof(int); i++) {
49 _Exit(reInt[i]);
54 ASSERT_EQ(exitCode, reInt[i]);
153 int reInt[4] = {0, 1, 100, 255};
155 for (int i = 0; i < sizeof(reInt) / sizeof(int); i++) {
159 _exit(reInt[i]);
164 ASSERT_EQ(exitCode, reInt[i]);
263 int reInt[4] = {0, 1, 100, 255};
265 for (int i = 0; i < sizeof(reInt) / sizeof(int); i++) {
269 exit(reInt[i]);
274 ASSERT_EQ(exitCode, reInt[i]);
307 int reInt = CheckProcStatus(pid, &exitCode, 0);
308 if ((reInt == 2) && (exitCode == SIGABRT)) {