Breakpoints
The CLI provides additional parameters for breakpoints, some of which are not yet supported in the UI. For example, you can provide a specific function or address on which to set a breakpoint:
CLI: dbreak breakpoint-expr
CLI: dbreak -address addr
*Set a breakpoint directly on a function:
dbreak my_function
Sets a breakpoint on the function my_function. If multiple files include this function, this call sets a breakpoint in all the files.
Note: For breakpoints on functions of the same name that span multiple files, the UI currently displays each breakpoint with the same ID. Deleting one deletes all breakpoints that match that ID.
*Set a breakpoint directly on an address:
dbreak -address 0x2b0b7aad1470
Sets a breakpoint at a specific address, useful to observe a specific location in memory.