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

Method repositories

rust/src/repository/manager.rs:45–51  ·  view source on GitHub ↗

List of [`Repository`] objects being managed

(&self)

Source from the content-addressed store, hash-verified

43
44 /// List of [`Repository`] objects being managed
45 pub fn repositories(&self) -> Array<Repository> {
46 let mut count = 0;
47 let result =
48 unsafe { BNRepositoryManagerGetRepositories(self.handle.as_ptr(), &mut count) };
49 assert!(!result.is_null());
50 unsafe { Array::new(result, count, ()) }
51 }
52
53 /// Adds a new plugin repository for the manager to track.
54 ///

Callers 2

fmtMethod · 0.45
test_listFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_listFunction · 0.36