Home
last modified time | relevance | path

Searched refs:msgQ (Results 1 – 4 of 4) sorted by relevance

/packages/services/BuiltInPrintService/jni/lib/
Dwprint_msgq.c78 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/
Dplugin_pcl.c73 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/
Dwprint_msgq.h38 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);
Difc_wprint.h58 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);