Notify of a RIP event. @warning: This method is meant to be used internally by the debugger. @type event: L{RIPEvent} @param event: RIP event. @rtype: bool @return: C{True} to call the user-defined handle, C{False} otherwise.
(self, event)
| 1435 | return bCallHandler1 and bCallHandler2 |
| 1436 | |
| 1437 | def _notify_rip(self, event): |
| 1438 | """ |
| 1439 | Notify of a RIP event. |
| 1440 | |
| 1441 | @warning: This method is meant to be used internally by the debugger. |
| 1442 | |
| 1443 | @type event: L{RIPEvent} |
| 1444 | @param event: RIP event. |
| 1445 | |
| 1446 | @rtype: bool |
| 1447 | @return: C{True} to call the user-defined handle, C{False} otherwise. |
| 1448 | """ |
| 1449 | event.debug.detach(event.get_pid()) |
| 1450 | return True |
| 1451 | |
| 1452 | def _notify_debug_control_c(self, event): |
| 1453 | """ |