Home | History | Annotate | Download | only in vold

Lines Matching defs:status

75     int status;
86 rc = android_fork_execvp(ARRAY_SIZE(args), (char **)args, &status, false,
95 if (!WIFEXITED(status)) {
101 status = WEXITSTATUS(status);
103 if (status == 0) {
107 SLOGE("Resize (ext4) failed (unknown exit code %d)", status);
118 int status;
131 rc = android_fork_execvp(ARRAY_SIZE(args), (char **)args, &status, false, true);
134 rc = android_fork_execvp(5, (char **)args, &status, false, true);
136 rc = android_fork_execvp(ARRAY_SIZE(args), (char **)args, &status, false,
144 if (!WIFEXITED(status)) {
150 status = WEXITSTATUS(status);
152 if (status == 0) {
156 SLOGE("Format (ext4) failed (unknown exit code %d)", status);