Lines Matching defs:tse
303 struct thread_stack_entry *tse;
311 tse = &ts->stack[idx];
312 cr.cp = tse->cp;
313 cr.call_time = tse->timestamp;
315 cr.branch_count = ts->branch_count - tse->branch_count;
316 cr.insn_count = ts->insn_count - tse->insn_count;
317 cr.cyc_count = ts->cyc_count - tse->cyc_count;
318 cr.db_id = tse->db_id;
319 cr.call_ref = tse->ref;
321 if (tse->no_call)
325 if (tse->non_call)
333 parent_db_id = idx ? &(tse - 1)->db_id : NULL;
786 struct thread_stack_entry *tse;
798 tse = &ts->stack[ts->cnt++];
799 tse->ret_addr = ret_addr;
800 tse->timestamp = timestamp;
801 tse->ref = ref;
802 tse->branch_count = ts->branch_count;
803 tse->insn_count = ts->insn_count;
804 tse->cyc_count = ts->cyc_count;
805 tse->cp = cp;
806 tse->no_call = no_call;
807 tse->trace_end = trace_end;
808 tse->non_call = false;
809 tse->db_id = 0;
824 struct thread_stack_entry *tse = &ts->stack[0];
826 if (tse->cp->sym == sym)
1001 struct thread_stack_entry *tse;
1008 tse = &ts->stack[ts->cnt - 1];
1009 if (tse->trace_end) {
1053 struct thread_stack_entry *tse = &ts->stack[ts->cnt - 1];
1055 struct symbol *sym = tse->cp->sym;