Lines Matching refs:pentry

330 	struct pending_entry *pentry = NULL;  in process_pending_queue()  local
337 pentry = &pqueue->head[pqueue->front]; in process_pending_queue()
338 if (unlikely(!pentry->busy)) { in process_pending_queue()
343 info = (struct cpt_info_buffer *)pentry->post_arg; in process_pending_queue()
351 status = (union cpt_res_s *)pentry->completion_addr; in process_pending_queue()
358 pentry->completion_addr = NULL; in process_pending_queue()
359 pentry->busy = false; in process_pending_queue()
361 pentry->post_arg = NULL; in process_pending_queue()
372 pentry->completion_addr = NULL; in process_pending_queue()
373 pentry->busy = false; in process_pending_queue()
375 pentry->post_arg = NULL; in process_pending_queue()
390 pentry->completion_addr = NULL; in process_pending_queue()
391 pentry->busy = false; in process_pending_queue()
392 pentry->post_arg = NULL; in process_pending_queue()
402 pentry->callback(ccode, pentry->callback_arg); in process_pending_queue()
413 struct pending_entry *pentry = NULL; in process_request() local
485 pentry = get_free_pending_entry(pqueue, cptvf->pqinfo.qlen); in process_request()
486 if (unlikely(!pentry)) { in process_request()
500 pentry->completion_addr = info->completion_addr; in process_request()
501 pentry->post_arg = (void *)info; in process_request()
502 pentry->callback = req->callback; in process_request()
503 pentry->callback_arg = req->callback_arg; in process_request()
504 info->pentry = pentry; in process_request()
505 pentry->busy = true; in process_request()
509 info->pentry = pentry; in process_request()