MCPcopy Create free account
hub / github.com/Rust-API/Rust-API-Bypass-Checker / is_path_alias

Method is_path_alias

src/analysis/memory/symbolic_value.rs:963–968  ·  view source on GitHub ↗

True if the value is derived from one or more memory locations whose values were not known when the value was constructed.

(&self)

Source from the content-addressed store, hash-verified

961 /// True if the value is derived from one or more memory locations whose values were not known
962 /// when the value was constructed.
963 fn is_path_alias(&self) -> bool {
964 matches!(
965 &self.expression,
966 Expression::Reference(..) | Expression::Variable { .. } | Expression::Widen { .. }
967 )
968 }
969
970 /// True if all possible concrete values are elements of the set corresponding to this domain.
971 fn is_top(&self) -> bool {

Callers 1

refine_pathsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected