(self, ctxt, offset)
| 3810 | return False |
| 3811 | |
| 3812 | def _get_next_valid_offset(self, ctxt, offset): |
| 3813 | try: |
| 3814 | return self.perform_get_next_valid_offset(offset) |
| 3815 | except: |
| 3816 | log_error(traceback.format_exc()) |
| 3817 | return offset |
| 3818 | |
| 3819 | def _get_start(self, ctxt): |
| 3820 | try: |
nothing calls this directly
no test coverage detected