MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / libraries

Method libraries

python/binaryview.py:9944–9954  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

9942
9943 @property
9944 def libraries(self) -> List[str]:
9945 try:
9946 result: List[str] = []
9947 libs = self.query_metadata("Libraries")
9948 assert isinstance(libs, list)
9949 for s in libs:
9950 assert isinstance(s, str)
9951 result.append(s)
9952 return result
9953 except KeyError:
9954 return []
9955
9956 def typed_data_accessor(self, address: int, type: '_types.Type') -> 'TypedDataAccessor':
9957 return TypedDataAccessor(type, address, self, self.endianness)

Callers

nothing calls this directly

Calls 2

query_metadataMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected