(self, ctxt, offset)
| 3789 | return False |
| 3790 | |
| 3791 | def _is_offset_readable(self, ctxt, offset): |
| 3792 | try: |
| 3793 | return self.perform_is_offset_readable(offset) |
| 3794 | except: |
| 3795 | log_error(traceback.format_exc()) |
| 3796 | return False |
| 3797 | |
| 3798 | def _is_offset_writable(self, ctxt, offset): |
| 3799 | try: |
nothing calls this directly
no test coverage detected