get_method_callees
Identify methods called by a specified method to analyze code dependencies and understand execution flow during code review or security analysis.
Instructions
Retrieves a list of methods info that are called by the specified method
@param method_full_name: The fully qualified name of the source method(e.g., com.android.nfc.NfcService$6.onReceive:void(android.content.Context,android.content.Intent)) @return: List of full name, name, signature and id of methods which call the source method
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method_full_name | Yes |