Home
last modified time | relevance | path

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

/tools/perf/util/
Dauxtrace.c149 struct auxtrace_queue *queue_array; in auxtrace_alloc_queue_array() local
156 queue_array = calloc(nr_queues, sizeof(struct auxtrace_queue)); in auxtrace_alloc_queue_array()
157 if (!queue_array) in auxtrace_alloc_queue_array()
161 INIT_LIST_HEAD(&queue_array[i].head); in auxtrace_alloc_queue_array()
162 queue_array[i].priv = NULL; in auxtrace_alloc_queue_array()
165 return queue_array; in auxtrace_alloc_queue_array()
171 queues->queue_array = auxtrace_alloc_queue_array(queues->nr_queues); in auxtrace_queues__init()
172 if (!queues->queue_array) in auxtrace_queues__init()
181 struct auxtrace_queue *queue_array; in auxtrace_queues__grow() local
193 queue_array = auxtrace_alloc_queue_array(nr_queues); in auxtrace_queues__grow()
[all …]
Dintel-bts.c220 ret = intel_bts_setup_queue(bts, &bts->queues.queue_array[i], in intel_bts_setup_queues()
484 queue = &btsq->bts->queues.queue_array[btsq->queue_nr]; in intel_bts_process_queue()
562 struct auxtrace_queue *queue = &bts->queues.queue_array[i]; in intel_bts_process_tid_exit()
587 queue = &bts->queues.queue_array[queue_nr]; in intel_bts_process_queues()
733 intel_bts_free_queue(queues->queue_array[i].priv); in intel_bts_free_events()
734 queues->queue_array[i].priv = NULL; in intel_bts_free_events()
Dintel-pt.c265 queue = &ptq->pt->queues.queue_array[ptq->queue_nr]; in intel_pt_get_trace()
1024 ret = intel_pt_setup_queue(pt, &pt->queues.queue_array[i], i); in intel_pt_setup_queues()
1464 queue = &pt->queues.queue_array[ptq->queue_nr]; in intel_pt_next_tid()
1651 struct auxtrace_queue *queue = &pt->queues.queue_array[i]; in intel_pt_enable_sync_switch()
1764 queue = &pt->queues.queue_array[queue_nr]; in intel_pt_process_queues()
1810 struct auxtrace_queue *queue = &pt->queues.queue_array[i]; in intel_pt_process_timeless_queues()
1840 if (pt->queues.queue_array[i].cpu == cpu) in intel_pt_cpu_to_ptq()
1841 return pt->queues.queue_array[i].priv; in intel_pt_cpu_to_ptq()
1844 if (pt->queues.queue_array[--i].cpu == cpu) in intel_pt_cpu_to_ptq()
1845 return pt->queues.queue_array[i].priv; in intel_pt_cpu_to_ptq()
[all …]
Dauxtrace.h220 struct auxtrace_queue *queue_array; member