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

Method set_option

python/function.py:132–135  ·  view source on GitHub ↗
(self, option: DisassemblyOption, state: bool = True)

Source from the content-addressed store, hash-verified

130 return core.BNIsDisassemblySettingsOptionSet(self.handle, option)
131
132 def set_option(self, option: DisassemblyOption, state: bool = True) -> None:
133 if isinstance(option, str):
134 option = DisassemblyOption[option]
135 core.BNSetDisassemblySettingsOption(self.handle, option, state)
136
137 @staticmethod
138 def default_settings() -> 'DisassemblySettings':

Callers 3

find_all_textMethod · 0.95
find_all_constantMethod · 0.95
render_svgFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected