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

Method external_namespace

python/binaryview.py:3289–3295  ·  view source on GitHub ↗

External namespace for the current BinaryView

()

Source from the content-addressed store, hash-verified

3287
3288 @staticmethod
3289 def external_namespace() -> '_types.NameSpace':
3290 """External namespace for the current BinaryView"""
3291 ns = core.BNGetExternalNameSpace()
3292 try:
3293 return _types.NameSpace._from_core_struct(ns)
3294 finally:
3295 core.BNFreeNameSpace(ns)
3296
3297 @property
3298 def namespaces(self) -> List['_types.NameSpace']:

Callers

nothing calls this directly

Calls 1

_from_core_structMethod · 0.45

Tested by

no test coverage detected