Lines Matching full:res
79 int res = waitpid(entry.info.si_pid, NULL, WNOHANG);
80 LOGW_IF(res == 0,
110 pid_t res = waitpid(childPid, NULL, WNOHANG);
111 if (res != 0) {
112 if (res < 0) {
114 childPid, res, strerror(errno));
117 childPid, res);
128 return (status_t)res;
171 int res = pipe(mAvailMsg);
172 LOGE_IF(res != 0, "Unable to create signal handler pipe: %s", strerror(errno));