-
For example, I have user defined functions, exported functions, functions with auto names (via analysis), etc. How can I get only functions with auto names for further renaming? So this question is the same for all: symbols, types, variables, etc. See Ghidra's API for more explanation for what I does mean. I know about |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
So you only want things like sub_ that don't have a debug symbol or a user symbol? |
Beta Was this translation helpful? Give feedback.
-
Another related question that folks might be asking and find this question is:
The short explanation is that if you access a function.symbol and a symbol doesn't exist, a temporary one with
it will return None for sub_ named functions (without having to string match or in case some debug symbols happen to start with that) |
Beta Was this translation helpful? Give feedback.
So you only want things like sub_ that don't have a debug symbol or a user symbol?