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

Function try_cached_function_guid

plugins/warp/src/cache.rs:143–148  ·  view source on GitHub ↗
(function: &BNFunction)

Source from the content-addressed store, hash-verified

141}
142
143pub fn try_cached_function_guid(function: &BNFunction) -> Option<FunctionGUID> {
144 let view = function.view();
145 let view_id = ViewID::from(view);
146 let guid_cache = GUID_CACHE.get_or_init(Default::default);
147 guid_cache.get(&view_id)?.try_function_guid(function)
148}
149
150pub fn cached_type_reference(
151 view: &BinaryView,

Callers 2

match_functionMethod · 0.85
actionMethod · 0.85

Calls 3

try_function_guidMethod · 0.80
viewMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected