Lines Matching refs:tse
200 struct thread_stack_entry *tse; in thread_stack__call_return() local
207 tse = &ts->stack[idx]; in thread_stack__call_return()
208 cr.cp = tse->cp; in thread_stack__call_return()
209 cr.call_time = tse->timestamp; in thread_stack__call_return()
211 cr.branch_count = ts->branch_count - tse->branch_count; in thread_stack__call_return()
212 cr.call_ref = tse->ref; in thread_stack__call_return()
214 if (tse->no_call) in thread_stack__call_return()
473 struct thread_stack_entry *tse; in thread_stack__push_cp() local
482 tse = &ts->stack[ts->cnt++]; in thread_stack__push_cp()
483 tse->ret_addr = ret_addr; in thread_stack__push_cp()
484 tse->timestamp = timestamp; in thread_stack__push_cp()
485 tse->ref = ref; in thread_stack__push_cp()
486 tse->branch_count = ts->branch_count; in thread_stack__push_cp()
487 tse->cp = cp; in thread_stack__push_cp()
488 tse->no_call = no_call; in thread_stack__push_cp()
503 struct thread_stack_entry *tse = &ts->stack[0]; in thread_stack__pop_cp() local
505 if (tse->cp->sym == sym) in thread_stack__pop_cp()
631 struct thread_stack_entry *tse; in thread_stack__trace_begin() local
638 tse = &ts->stack[ts->cnt - 1]; in thread_stack__trace_begin()
639 if (tse->cp->sym == NULL && tse->cp->ip == 0) { in thread_stack__trace_begin()