I’m trying to read the source code of a project. There are many functions I would like to inspect. Right clicking and inserting breakpoints at all the functions takes lot of time.
It is possible to insert break points at all functions in a file using gdb command line. I was wondering if it can be done inside Qt Creator?
Yes, it is possible to give commands directly to GDB in Qt Creator. See Directly Interacting with Native Debuggers.
And yes, as you can read here it is possible set breakpoints on every function in a given file. What you need is the rbreak command: