MCPcopy Create free account
hub / github.com/NationalSecurityAgency/TraceAnalysis / insert_plugin

Method insert_plugin

dynamic-dataflow/core/src/analysis.rs:110–113  ·  view source on GitHub ↗
(&mut self, mut plugin: Box<dyn DataflowPlugin>)

Source from the content-addressed store, hash-verified

108
109 #[cfg(feature = "plugins")]
110 pub fn insert_plugin(&mut self, mut plugin: Box<dyn DataflowPlugin>) {
111 plugin.on_init();
112 self.plugins.push(plugin);
113 }
114
115 pub fn insert_exporter(&mut self, exporter: impl DataflowExport + 'static) {
116 self.store.exporters.push(Box::new(exporter))

Callers 6

analyzeFunction · 0.80
setup_common_pluginsFunction · 0.80
setup_x86_64_pluginsFunction · 0.80
analyzeFunction · 0.80
setup_common_pluginsFunction · 0.80
setup_x86_64_pluginsFunction · 0.80

Calls 2

on_initMethod · 0.80
pushMethod · 0.80

Tested by

no test coverage detected