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

Function init

rust/src/headless.rs:63–66  ·  view source on GitHub ↗

Loads plugins, core architecture, platform, etc. ⚠️ Important! Must be called at the beginning of scripts. Plugins do not need to call this. ⚠️ You can instead call this through [`Session`]. If you need to customize initialization, use [`init_with_opts`] instead.

()

Source from the content-addressed store, hash-verified

61///
62/// If you need to customize initialization, use [`init_with_opts`] instead.
63pub fn init() -> Result<(), InitializationError> {
64 let options = InitializationOptions::default();
65 init_with_opts(options)
66}
67
68/// Unloads plugins, stops all worker threads, and closes open logs.
69///

Callers 7

newMethod · 0.85
test_license_validationFunction · 0.85
UIPluginInitFunction · 0.85
initMethod · 0.85
UIPluginInitFunction · 0.85
test_data_from_fileFunction · 0.85
UIPluginInitFunction · 0.85

Calls 1

init_with_optsFunction · 0.85

Tested by 2

test_license_validationFunction · 0.68
test_data_from_fileFunction · 0.68