(self, addr)
| 255 | return core.BNGetLinearViewObjectOrderingIndexTotal(self.handle) |
| 256 | |
| 257 | def child_for_address(self, addr): |
| 258 | result = core.BNGetLinearViewObjectChildForAddress(self.handle, addr) |
| 259 | if not result: |
| 260 | return None |
| 261 | return LinearViewObject(result, self) |
| 262 | |
| 263 | def child_for_identifier(self, ident): |
| 264 | ident_obj = ident._to_core_struct() |
nothing calls this directly
no test coverage detected