def dbg_bpt()

in functions/functraceplus.py [0:0]


    def dbg_bpt(self, tid, bptea):
        
        if self.is_hit_entry_point(bptea) == True:
            self.dbg_get_imports()
            self.hook_funcs_action()
            ida_dbg.request_continue_process()
            ida_dbg.run_requests()
            return 0
        
        hit_res = self.hit_getprocaddress_or_ret_bp(bptea)
        if hit_res == False:
            hit_res = self.hit_general_hook_func(bptea)
        
        if hit_res == False and self.ignore_bp == False:
            return 0
        
        ida_dbg.request_continue_process()
        ida_dbg.run_requests()
        return 0