Home | History | Annotate | Download | only in cups

Lines Matching refs:command

45  * 'cupsSideChannelDoRequest()' - Send a side-channel command to a backend and wait for a response.
51 * do not support the specified side-channel command.
60 cups_sc_status_t /* O - Status of command */
62 cups_sc_command_t command, /* I - Command to send */
67 cups_sc_status_t status; /* Status of command */
68 cups_sc_command_t rcommand; /* Response command */
71 if (cupsSideChannelWrite(command, CUPS_SC_STATUS_NONE, NULL, 0, timeout))
77 if (rcommand != command)
101 cups_sc_command_t *command, /* O - Command code */
119 DEBUG_printf(("cupsSideChannelRead(command=%p, status=%p, data=%p, "
120 "datalen=%p(%d), timeout=%.3f)", command, status, data,
127 if (!command || !status)
159 *command = CUPS_SC_CMD_NONE;
169 * 0 Command code
177 *command = CUPS_SC_CMD_NONE;
190 *command = CUPS_SC_CMD_NONE;
206 *command = CUPS_SC_CMD_NONE;
213 * Validate the command code in the message...
219 DEBUG_printf(("1cupsSideChannelRead: Bad command %d!", buffer[0]));
223 *command = CUPS_SC_CMD_NONE;
229 *command = (cups_sc_command_t)buffer[0];
306 cups_sc_status_t status; /* Status of command */
307 cups_sc_command_t rcommand; /* Response command */
412 cups_sc_status_t status; /* Status of command */
413 cups_sc_command_t rcommand; /* Response command */
526 cups_sc_command_t command, /* I - Command code */
546 if (command < CUPS_SC_CMD_SOFT_RESET || command >= CUPS_SC_CMD_MAX ||
590 * 0 Command code
599 buffer[0] = command;