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

Method _update

python/flowgraph.py:492–502  ·  view source on GitHub ↗
(self, ctxt)

Source from the content-addressed store, hash-verified

490 log_error(traceback.format_exc())
491
492 def _update(self, ctxt):
493 try:
494 graph = self.update()
495 if graph is NotImplemented:
496 return None
497 flow_graph = core.BNNewFlowGraphReference(graph.handle)
498 assert flow_graph is not None, "core.BNNewFlowGraphReference returned None"
499 return ctypes.cast(flow_graph, ctypes.c_void_p).value
500 except:
501 log_error(traceback.format_exc())
502 return None
503
504 def _external_ref_taken(self, ctxt):
505 try:

Callers

nothing calls this directly

Calls 2

updateMethod · 0.95
log_errorFunction · 0.85

Tested by

no test coverage detected