Lines Matching refs:rc
81 int rc; in search_proc_maps() local
90 rc = sscanf(buf, "%lx-%lx %*c%*c%*c%*c %*x %*d:%*d %*d %127s\n", in search_proc_maps()
92 if (rc == 2) in search_proc_maps()
95 if (rc != 3) { in search_proc_maps()
97 rc = -1; in search_proc_maps()
104 rc = 0; in search_proc_maps()
111 return rc; in search_proc_maps()
132 int rc; in test_one() local
138 assert(waitpid(pid, &rc, 0) != -1); in test_one()
140 if (WIFEXITED(rc) && WEXITSTATUS(rc) == 0) in test_one()
144 assert(!WIFEXITED(rc)); in test_one()
148 WTERMSIG(rc)); in test_one()