Lines Matching refs:lq
305 def __init__(self, cpu, lq): argument
307 self._lq = lq
480 def show_log_queue(lq, enqueued, dispatched): argument
482 'lq_mem_state_t', lq._lq.lq_mem_state, 'LQ_MEM_STATE_')
484 'lq_req_state_t', lq._lq.lq_req_state, 'LQ_REQ_STATE_')
485 cpu = "N/A" if lq.cpu is None else str(lq.cpu)
486 pp.print(hdr_lq.format(lq=lq, state=state, size=lq.size, reconf=reconf, cpu=cpu,
491 for lq in log_queues:
492 lq_enqueued = list(lq.enqueued)
493 lq_dispatched = list(lq.dispatched)
496 show_log_queue(lq, lq_enqueued, lq_dispatched)
510 for lq in log_queues:
511 show_log_queue(lq, list(lq.enqueued), list(lq.dispatched))
584 log_queues = [lq for lq in log_queues if lq.cpu == cpu_no]
587 log_queues = [lq for lq in log_queues if addr == lq.address]
589 lq = kern.GetValueFromAddress(addr, 'log_queue_t')
590 log_queues = [LogQueue(None, lq)]