Lines Matching defs:status
185 int status = 0;
186 waitpid(pid, &status, 0);
187 if (WIFEXITED(status)) {
188 BEGET_LOGI("Execute success, status: %d, command: %s", WEXITSTATUS(status), argv[0]);
189 return WEXITSTATUS(status);
246 MountStatus status = MOUNT_ERROR;
250 BEGET_CHECK(fp != NULL, return status);
269 status = MOUNT_MOUNTED;
271 status = MOUNT_UMOUNTED;
275 return status;
714 MountStatus status = GetMountStatusForMountPoint(item->mountPoint);
715 if (status == MOUNT_ERROR) {
716 BEGET_LOGW("Cannot get mount status of mount point \" %s \"", item->mountPoint);
717 continue; // Cannot get mount status, just ignore it and try next one.
718 } else if (status == MOUNT_UMOUNTED) {