get_method_callees
Identify methods called by a specified method in code. The tool analyzes the full name of the source method and returns details of its callees, aiding in code review and 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 |
Input Schema (JSON Schema)
{
"properties": {
"method_full_name": {
"title": "Method Full Name",
"type": "string"
}
},
"required": [
"method_full_name"
],
"title": "get_method_calleesArguments",
"type": "object"
}