Lines Matching refs:cr
59 int (*process)(struct call_return *cr, void *data);
201 struct call_return cr = { in thread_stack__call_return() local
208 cr.cp = tse->cp; in thread_stack__call_return()
209 cr.call_time = tse->timestamp; in thread_stack__call_return()
210 cr.return_time = 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()
213 cr.return_ref = ref; in thread_stack__call_return()
215 cr.flags |= CALL_RETURN_NO_CALL; in thread_stack__call_return()
217 cr.flags |= CALL_RETURN_NO_RETURN; in thread_stack__call_return()
219 return crp->process(&cr, crp->data); in thread_stack__call_return()
433 call_return_processor__new(int (*process)(struct call_return *cr, void *data), in call_return_processor__new() argument