Whether function was automatically discovered s a result of some creation of a 'user' function. 'user' functions may or may not have been created by a user through the or API. For instance the entry point into a function is always created a 'user' function. 'user' functions should be considered the root of auto analysis.
(&self)
| 2214 | /// into a function is always created a 'user' function. 'user' functions should be considered the root of auto |
| 2215 | /// analysis. |
| 2216 | pub fn is_auto(&self) -> bool { |
| 2217 | unsafe { BNWasFunctionAutomaticallyDiscovered(self.handle) } |
| 2218 | } |
| 2219 | |
| 2220 | /// Returns a list of possible call sites contained in this function. |
| 2221 | /// This includes ordinary calls, tail calls, and indirect jumps. Not all of |