(self, ctxt, offset)
| 3796 | return False |
| 3797 | |
| 3798 | def _is_offset_writable(self, ctxt, offset): |
| 3799 | try: |
| 3800 | return self.perform_is_offset_writable(offset) |
| 3801 | except: |
| 3802 | log_error(traceback.format_exc()) |
| 3803 | return False |
| 3804 | |
| 3805 | def _is_offset_executable(self, ctxt, offset): |
| 3806 | try: |
nothing calls this directly
no test coverage detected