Lines Matching refs:rt
74 int rt = waitpid(pid, &status, flag);
76 if (rt == -1) {
79 } else if (rt == 0) {
81 } else if (rt != pid) { // waitpid return error
83 LOGE("waitpid return error, rt=%d, errno=%d:%s\n", rt, errno, strerror(errno));
115 int rt = execve(fname, argv, envp);
116 if (rt == -1) {
120 LOGE("ERROR: execve should never return on success. rt=%d, errno=%d, err=%s\n", rt, errno, strerror(errno));
158 int rt = CheckProcStatus(pid, &exitCode, 0);
159 if ((rt <= 0) || (exitCode == EXECVE_RETURN_OK) || (exitCode == EXECVE_RETURN_ERROR)) {
176 int rt = execve(fname, argv, envp);
177 if (rt == -1) {
181 LOGE("ERROR: execve should never return on success. rt=%d, errno=%d, err=%s\n", rt, errno, strerror(errno));