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

Method clear_user_var_values

rust/src/medium_level_il/function.rs:266–275  ·  view source on GitHub ↗

Clear all user defined variable values.

(&self)

Source from the content-addressed store, hash-verified

264
265 /// Clear all user defined variable values.
266 pub fn clear_user_var_values(&self) -> Result<(), ()> {
267 for user_var_val in &self.user_var_values() {
268 self.clear_user_var_value(
269 &user_var_val.variable,
270 user_var_val.def_site.addr,
271 user_var_val.after,
272 )?;
273 }
274 Ok(())
275 }
276
277 pub fn create_auto_stack_var<'a, T: Into<Conf<&'a Type>>, S: BnStrCompatible>(
278 &self,

Callers

nothing calls this directly

Calls 2

user_var_valuesMethod · 0.80
clear_user_var_valueMethod · 0.45

Tested by

no test coverage detected