Lines Matching refs:status

32 	struct ap_queue_status status;
37 status = ap_aqic(aq->qid, qirqctrl, ind);
38 switch (status.response_code) {
65 * Returns AP queue status structure.
81 struct ap_queue_status status;
83 status = __ap_send(qid, psmid, msg, length, 0);
84 switch (status.response_code) {
100 struct ap_queue_status status;
104 status = ap_dqap(qid, psmid, msg, length);
105 switch (status.response_code) {
109 if (status.queue_empty)
136 struct ap_queue_status status;
140 status = ap_dqap(aq->qid, &aq->reply->psmid,
142 switch (status.response_code) {
145 if (!status.queue_empty && !aq->queue_count)
166 if (!status.queue_empty || aq->queue_count <= 0)
177 return status;
188 struct ap_queue_status status;
192 status = ap_sm_recv(aq);
193 switch (status.response_code) {
209 aq->last_err_rc = status.response_code;
211 __func__, status.response_code,
225 struct ap_queue_status status;
240 status = __ap_send(qid, ap_msg->psmid,
243 switch (status.response_code) {
275 aq->last_err_rc = status.response_code;
277 __func__, status.response_code,
302 struct ap_queue_status status;
304 status = ap_rapq(aq->qid);
305 switch (status.response_code) {
313 aq->last_err_rc = status.response_code;
315 __func__, status.response_code,
329 struct ap_queue_status status;
333 /* Try to read a completed message and get the status */
334 status = ap_sm_recv(aq);
336 /* Get the status with TAPQ */
337 status = ap_tapq(aq->qid, NULL);
339 switch (status.response_code) {
356 aq->last_err_rc = status.response_code;
358 __func__, status.response_code,
372 struct ap_queue_status status;
375 /* Try to read a completed message and get the status */
376 status = ap_sm_recv(aq);
378 /* Get the status with TAPQ */
379 status = ap_tapq(aq->qid, NULL);
381 if (status.irq_enabled == 1) {
388 switch (status.response_code) {
397 aq->last_err_rc = status.response_code;
399 __func__, status.response_code,