get_method_callers
Identify methods that call a specified method in code by providing its fully qualified name. Useful for code review and security analysis in software development.
Instructions
Retrieves a list of methods that call 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 called by the source method
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method_full_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"method_full_name": {
"title": "Method Full Name",
"type": "string"
}
},
"required": [
"method_full_name"
],
"title": "get_method_callersArguments",
"type": "object"
}