News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

How to find all references to a function

Started by knightcoder, November 01, 2009, 12:26:40 AM

Previous topic - Next topic

knightcoder

Hi all.
I'm new to Code::Blocks. I've created a project with quite a few files/functions in it. When I right-click on a function, it takes me to either the implementation or the declaration of the function. How can I find all the places where that function is called? I know grep would work but I can't distinguish between overloaded functions.

Thanks.

~[Hack the Planet]~


ollydbg

If you installed the "thread search" plugin, there is another context menu:

"find occurrences of XXXXX".
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.