Lines Matching refs:status
89 s32 status; /* command execution status, host -> guest */
226 pipe->command_buffer->status = PIPE_ERROR_INVAL;
228 return pipe->command_buffer->status;
233 int status;
237 status = goldfish_pipe_cmd_locked(pipe, cmd);
239 return status;
246 static int goldfish_pipe_error_convert(int status)
248 switch (status) {
335 int *status)
358 *status = goldfish_pipe_cmd_locked(pipe,
419 int status;
423 &consumed_size, &status);
428 /* No matter what's the status, we've transferred
434 if (status > 0)
436 if (status == 0) {
448 if (status != PIPE_ERROR_AGAIN)
451 status, is_write ? "write" : "read");
459 if (status != PIPE_ERROR_AGAIN ||
461 ret = goldfish_pipe_error_convert(status);
465 status = wait_for_host_signal(pipe, is_write);
466 if (status < 0)
467 return status;
497 int status;
501 status = goldfish_pipe_cmd(pipe, PIPE_CMD_POLL);
502 if (status < 0)
505 if (status & PIPE_POLL_IN)
507 if (status & PIPE_POLL_OUT)
509 if (status & PIPE_POLL_HUP)
703 int status;
723 status = -ENOMEM;
731 status = id;
744 status = goldfish_pipe_cmd_locked(pipe, PIPE_CMD_OPEN);
746 if (status < 0)
760 return status;