get_xrefs_to_field
Find all cross-references to a specific struct field in IDA Pro, enabling efficient reverse engineering and analysis of struct member usage.
Instructions
Get all cross references to a named struct field (member)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field_name | Yes | Name of the field (member) to get xrefs to | |
struct_name | Yes | Name of the struct (type) containing the field |
Input Schema (JSON Schema)
{
"properties": {
"field_name": {
"description": "Name of the field (member) to get xrefs to",
"title": "Field Name",
"type": "string"
},
"struct_name": {
"description": "Name of the struct (type) containing the field",
"title": "Struct Name",
"type": "string"
}
},
"required": [
"struct_name",
"field_name"
],
"title": "get_xrefs_to_fieldArguments",
"type": "object"
}