Lines Matching refs:cr
732 struct call_return *cr) in python_export_call_return() argument
735 u64 comm_db_id = cr->comm ? cr->comm->db_id : 0; in python_export_call_return()
740 tuple_set_u64(t, 0, cr->db_id); in python_export_call_return()
741 tuple_set_u64(t, 1, cr->thread->db_id); in python_export_call_return()
743 tuple_set_u64(t, 3, cr->cp->db_id); in python_export_call_return()
744 tuple_set_u64(t, 4, cr->call_time); in python_export_call_return()
745 tuple_set_u64(t, 5, cr->return_time); in python_export_call_return()
746 tuple_set_u64(t, 6, cr->branch_count); in python_export_call_return()
747 tuple_set_u64(t, 7, cr->call_ref); in python_export_call_return()
748 tuple_set_u64(t, 8, cr->return_ref); in python_export_call_return()
749 tuple_set_u64(t, 9, cr->cp->parent->db_id); in python_export_call_return()
750 tuple_set_s32(t, 10, cr->flags); in python_export_call_return()
759 static int python_process_call_return(struct call_return *cr, void *data) in python_process_call_return() argument
763 return db_export__call_return(dbe, cr); in python_process_call_return()