Home
last modified time | relevance | path

Searched refs:unwind_queue (Results 1 – 6 of 6) sorted by relevance

/external/strace/
Dunwind.c66 if (tcp->unwind_queue) in unwind_tcb_init()
69 tcp->unwind_queue = xmalloc(sizeof(*tcp->unwind_queue)); in unwind_tcb_init()
70 tcp->unwind_queue->head = NULL; in unwind_tcb_init()
71 tcp->unwind_queue->tail = NULL; in unwind_tcb_init()
79 if (!tcp->unwind_queue) in unwind_tcb_fin()
82 queue_print(tcp->unwind_queue); in unwind_tcb_fin()
83 free(tcp->unwind_queue); in unwind_tcb_fin()
84 tcp->unwind_queue = NULL; in unwind_tcb_fin()
293 if (tcp->unwind_queue->head) { in unwind_tcb_print()
295 tcp, tcp->unwind_queue->head); in unwind_tcb_print()
[all …]
Ddefs.h245 struct unwind_queue_t *unwind_queue; member
DChangeLog4965 * unwind.c (unwind_tcb_fin): Skip if tcp->unwind_queue is NULL.
5576 * defs.h (struct tcb): Rename queue field to unwind_queue,
/external/perfetto/src/profiling/perf/
DBUILD.gn105 "unwind_queue.h",
Dunwinding.h104 UnwindQueue<UnwindEntry, kUnwindQueueCapacity>& unwind_queue() { in unwind_queue() function
Dperf_producer.cc607 auto& queue = unwinding_worker_->unwind_queue(); in ReadAndParsePerCpuBuffer()