Lines Matching refs:tse
166 struct thread_stack_entry *tse; in thread_stack__call_return() local
173 tse = &ts->stack[idx]; in thread_stack__call_return()
174 cr.cp = tse->cp; in thread_stack__call_return()
175 cr.call_time = tse->timestamp; in thread_stack__call_return()
177 cr.branch_count = ts->branch_count - tse->branch_count; in thread_stack__call_return()
178 cr.call_ref = tse->ref; in thread_stack__call_return()
180 if (tse->no_call) in thread_stack__call_return()
337 struct thread_stack_entry *tse; in thread_stack__push_cp() local
346 tse = &ts->stack[ts->cnt++]; in thread_stack__push_cp()
347 tse->ret_addr = ret_addr; in thread_stack__push_cp()
348 tse->timestamp = timestamp; in thread_stack__push_cp()
349 tse->ref = ref; in thread_stack__push_cp()
350 tse->branch_count = ts->branch_count; in thread_stack__push_cp()
351 tse->cp = cp; in thread_stack__push_cp()
352 tse->no_call = no_call; in thread_stack__push_cp()
367 struct thread_stack_entry *tse = &ts->stack[0]; in thread_stack__pop_cp() local
369 if (tse->cp->sym == sym) in thread_stack__pop_cp()
495 struct thread_stack_entry *tse; in thread_stack__trace_begin() local
502 tse = &ts->stack[ts->cnt - 1]; in thread_stack__trace_begin()
503 if (tse->cp->sym == NULL && tse->cp->ip == 0) { in thread_stack__trace_begin()