Lines Matching refs:cr
304 struct call_return cr = { in thread_stack__call_return() local
312 cr.cp = tse->cp; in thread_stack__call_return()
313 cr.call_time = tse->timestamp; in thread_stack__call_return()
314 cr.return_time = timestamp; in thread_stack__call_return()
315 cr.branch_count = ts->branch_count - tse->branch_count; in thread_stack__call_return()
316 cr.insn_count = ts->insn_count - tse->insn_count; in thread_stack__call_return()
317 cr.cyc_count = ts->cyc_count - tse->cyc_count; in thread_stack__call_return()
318 cr.db_id = tse->db_id; in thread_stack__call_return()
319 cr.call_ref = tse->ref; in thread_stack__call_return()
320 cr.return_ref = ref; in thread_stack__call_return()
322 cr.flags |= CALL_RETURN_NO_CALL; in thread_stack__call_return()
324 cr.flags |= CALL_RETURN_NO_RETURN; in thread_stack__call_return()
326 cr.flags |= CALL_RETURN_NON_CALL; in thread_stack__call_return()
335 return crp->process(&cr, parent_db_id, crp->data); in thread_stack__call_return()
754 call_return_processor__new(int (*process)(struct call_return *cr, u64 *parent_db_id, void *data), in call_return_processor__new() argument