I'm working on a decompilation of a windows PE (with its full debug symbols in a PDB) and I'm using IDA to help with it.
I want to know how I can get a list of all references to a given class member variable. When I press 'X' in a name that is a class member variable in the decompiler window it only shows xrefs to it within the actual function being decompiled. I want to see the references in all of the functions. Is that even possible without coding a script?


ctree_visitor_t, whosevisit_exprmethods looks forcot_memptr/cot_memrefexpressions. When such an expressionxis found, comparex->typeto your desired structure type. If it matches, you've found a place where that structure is used. To find accesses to a specific field, comparex->magainst the offset of the field you want. To find this across the database, apply yourctree_visitor_tderivative to all functions in the database. – Rolf Rolles Nov 12 '20 at 07:09