Lines Matching refs:cbs
66 if (bp->cbs != NULL && bp->cbs->on_hit != NULL) in breakpoint_on_hit()
67 (bp->cbs->on_hit)(bp, proc); in breakpoint_on_hit()
74 if (bp->cbs != NULL && bp->cbs->on_continue != NULL) in breakpoint_on_continue()
75 (bp->cbs->on_continue)(bp, proc); in breakpoint_on_continue()
84 if (bp->cbs != NULL && bp->cbs->on_retract != NULL) in breakpoint_on_retract()
85 (bp->cbs->on_retract)(bp, proc); in breakpoint_on_retract()
92 if (bp->cbs != NULL && bp->cbs->on_install != NULL) in breakpoint_on_install()
93 (bp->cbs->on_install)(bp, proc); in breakpoint_on_install()
101 if (bp->cbs != NULL && bp->cbs->get_return_bp != NULL) in breakpoint_get_return_bp()
102 return (bp->cbs->get_return_bp)(ret, bp, proc); in breakpoint_get_return_bp()
168 bp->cbs = NULL; in breakpoint_init_base()
194 breakpoint_set_callbacks(struct breakpoint *bp, struct bp_callbacks *cbs) in breakpoint_set_callbacks() argument
196 if (bp->cbs != NULL) in breakpoint_set_callbacks()
197 assert(bp->cbs == NULL); in breakpoint_set_callbacks()
198 bp->cbs = cbs; in breakpoint_set_callbacks()
229 breakpoint_set_callbacks(retp, bp->cbs); in breakpoint_clone()
424 bp->cbs = &entry_callbacks; in entry_breakpoint_init()