Home
last modified time | relevance | path

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

/Linux-v4.19/tools/perf/util/
Dauxtrace.c155 struct auxtrace_queue *queue_array; in auxtrace_alloc_queue_array() local
162 queue_array = calloc(nr_queues, sizeof(struct auxtrace_queue)); in auxtrace_alloc_queue_array()
163 if (!queue_array) in auxtrace_alloc_queue_array()
167 INIT_LIST_HEAD(&queue_array[i].head); in auxtrace_alloc_queue_array()
168 queue_array[i].priv = NULL; in auxtrace_alloc_queue_array()
171 return queue_array; in auxtrace_alloc_queue_array()
177 queues->queue_array = auxtrace_alloc_queue_array(queues->nr_queues); in auxtrace_queues__init()
178 if (!queues->queue_array) in auxtrace_queues__init()
187 struct auxtrace_queue *queue_array; in auxtrace_queues__grow() local
199 queue_array = auxtrace_alloc_queue_array(nr_queues); in auxtrace_queues__grow()
[all …]
Darm-spe.c163 arm_spe_free_queue(queues->queue_array[i].priv); in arm_spe_free_events()
164 queues->queue_array[i].priv = NULL; in arm_spe_free_events()
Dintel-bts.c219 ret = intel_bts_setup_queue(bts, &bts->queues.queue_array[i], in intel_bts_setup_queues()
481 queue = &btsq->bts->queues.queue_array[btsq->queue_nr]; in intel_bts_process_queue()
559 struct auxtrace_queue *queue = &bts->queues.queue_array[i]; in intel_bts_process_tid_exit()
584 queue = &bts->queues.queue_array[queue_nr]; in intel_bts_process_queues()
730 intel_bts_free_queue(queues->queue_array[i].priv); in intel_bts_free_events()
731 queues->queue_array[i].priv = NULL; in intel_bts_free_events()
Ds390-cpumsf.c578 queue = &sfq->sf->queues.queue_array[sfq->queue_nr]; in s390_cpumsf_run_decoder()
673 ret = s390_cpumsf_setup_queue(sf, &sf->queues.queue_array[i], in s390_cpumsf_setup_queues()
707 queue = &sf->queues.queue_array[queue_nr]; in s390_cpumsf_process_queues()
854 zfree(&queues->queue_array[i].priv); in s390_cpumsf_free_queues()
Dintel-pt.c240 queue = &ptq->pt->queues.queue_array[ptq->queue_nr]; in intel_pt_get_trace()
986 ret = intel_pt_setup_queue(pt, &pt->queues.queue_array[i], i); in intel_pt_setup_queues()
1425 queue = &pt->queues.queue_array[ptq->queue_nr]; in intel_pt_next_tid()
1612 struct auxtrace_queue *queue = &pt->queues.queue_array[i]; in intel_pt_enable_sync_switch()
1725 queue = &pt->queues.queue_array[queue_nr]; in intel_pt_process_queues()
1771 struct auxtrace_queue *queue = &pt->queues.queue_array[i]; in intel_pt_process_timeless_queues()
1801 if (pt->queues.queue_array[i].cpu == cpu) in intel_pt_cpu_to_ptq()
1802 return pt->queues.queue_array[i].priv; in intel_pt_cpu_to_ptq()
1805 if (pt->queues.queue_array[--i].cpu == cpu) in intel_pt_cpu_to_ptq()
1806 return pt->queues.queue_array[i].priv; in intel_pt_cpu_to_ptq()
[all …]
Dcs-etm.c216 cs_etm__free_queue(queues->queue_array[i].priv); in cs_etm__free_events()
217 queues->queue_array[i].priv = NULL; in cs_etm__free_events()
429 ret = cs_etm__setup_queue(etm, &etm->queues.queue_array[i], i); in cs_etm__setup_queues()
590 queue = &etmq->etm->queues.queue_array[etmq->queue_nr]; in cs_etm__get_trace()
1095 struct auxtrace_queue *queue = &etm->queues.queue_array[i]; in cs_etm__process_timeless_queues()
Dauxtrace.h220 struct auxtrace_queue *queue_array; member