Searched refs:msgQ (Results 1 – 4 of 4) sorted by relevance
/packages/services/BuiltInPrintService/jni/lib/ |
D | wprint_msgq.c | 78 status_t msgQDelete(msg_q_id msgQ) { in msgQDelete() argument 79 _msgq_hdr_t *msgq = (msg_q_id) msgQ; in msgQDelete() 95 status_t msgQSend(msg_q_id msgQ, const char *buffer, unsigned long nbytes, int timeout, in msgQSend() argument 97 _msgq_hdr_t *msgq = (msg_q_id) msgQ; in msgQSend() 121 status_t msgQReceive(msg_q_id msgQ, char *buffer, unsigned long max_nbytes, int timeout) { in msgQReceive() argument 122 _msgq_hdr_t *msgq = (msg_q_id) msgQ; in msgQReceive() 148 int msgQNumMsgs(msg_q_id msgQ) { in msgQNumMsgs() argument 149 _msgq_hdr_t *msgq = (msg_q_id) msgQ; in msgQNumMsgs()
|
/packages/services/BuiltInPrintService/jni/plugins/ |
D | plugin_pcl.c | 73 msg_q_id msgQ; member 101 if (priv->msgQ != MSG_Q_INVALID_ID) { in _cleanup_plugin_data() 102 priv->job_info.wprint_ifc->msgQDelete(priv->msgQ); in _cleanup_plugin_data() 116 while (priv->job_info.wprint_ifc->msgQReceive(priv->msgQ, (char *) &msg, sizeof(msgQ_msg_t), in _send_thread() 207 priv->msgQ, (char *) &msg, sizeof(msgQ_msg_t), NO_WAIT, MSG_Q_FIFO); in _stop_thread() 258 priv->msgQ = priv->job_info.wprint_ifc->msgQCreate( in _start_job() 260 if (priv->msgQ == MSG_Q_INVALID_ID) continue; in _start_job() 267 priv->msgQ, (char *) &msg, sizeof(msgQ_msg_t), NO_WAIT, MSG_Q_FIFO); in _start_job() 385 priv->job_info.wprint_ifc->msgQSend(priv->msgQ, (char *) &msg, in _print_page() 426 result = priv->job_info.wprint_ifc->msgQSend(priv->msgQ, (char *) &msg, in _print_page() [all …]
|
/packages/services/BuiltInPrintService/jni/include/ |
D | wprint_msgq.h | 38 status_t msgQDelete(msg_q_id msgQ); 40 status_t msgQSend(msg_q_id msgQ, const char *buffer, unsigned long nbytes, int timeout, 43 status_t msgQReceive(msg_q_id msgQ, char *buffer, unsigned long max_nbytes, int timeout); 45 int msgQNumMsgs(msg_q_id msgQ);
|
D | ifc_wprint.h | 58 status_t (*msgQDelete)(msg_q_id msgQ); 63 status_t (*msgQSend)(msg_q_id msgQ, const char *buffer, unsigned long nbytes, int timeout, 69 status_t (*msgQReceive)(msg_q_id msgQ, char *buffer, unsigned long max_nbytes, int timeout); 74 int (*msgQNumMsgs)(msg_q_id msgQ);
|