(self, unw_code, data, unw_info, file_offset)
| 1985 | """ |
| 1986 | |
| 1987 | def initialize(self, unw_code, data, unw_info, file_offset): |
| 1988 | self.struct = StructureWithBitfields( |
| 1989 | self._get_format(unw_code), file_offset=file_offset |
| 1990 | ) |
| 1991 | self.struct.__unpack__(data) |
| 1992 | |
| 1993 | def length_in_code_structures(self, unw_code, unw_info): |
| 1994 | """Computes how many UNWIND_CODE structures UNWIND_CODE occupies. |
no test coverage detected