Top "Breakpoints" questions

A breakpoint is a mechanism offered by a development environment that allows to interrupt and suspend the execution of a program for debugging purpose, in view of resuming the execution.

How to effectively remove all breakpoints in Android Studio

I tried various steps to remove breakpoints from Android Studio . One of them listed in question BreakPoint link I followed …

android intellij-idea breakpoints
Can .NET source code hard-code a debugging breakpoint?

I'm looking for a way in .NET (2.0, C# in particular) for source code to trigger a debugging break as if …

c# visual-studio .net-2.0 breakpoints
How to set conditional breakpoint based on string comparison in Visual Studio?

This is something I have tried from time to time over the years and never quite succeeded. I just want …

c++ visual-studio-2012 breakpoints string-comparison conditional-breakpoint
Breakpoint-induced interactive debugging of Python with IPython

Say I have an IPython session, from which I call some script: > run my_script.py Is there a …

python debugging breakpoints ipython
How to wait until remote .NET debugger attached

Today I ran into a problem were I needed to remote-debug a program. The program was launched from another system, …

.net debugging breakpoints remote-debugging
gdb scripting: execute commands at selected breakpoint

I'd like to predefine some breakpoints in a gdb script and to invoke some special commands at these breakpoints and …

scripting gdb breakpoints
Why do I have unknown breakpoints showing in my Markers tab?

There are two "Unknown" items in my Markers tab for "Java Exception Breakpoints". Any ideas what they are, and how …

java eclipse breakpoints
Can I set breakpoints to all methods in a class at once in Visual Studio?

I have 40-50 methods in a class, I want to add breakpoints to all of them. Can I add breakpoints …

visual-studio-2010 debugging breakpoints
Debugging all events in Visual Studio 2010 without setting break points

I am trying to debug a windows form application which has a large number of events: button presses, timers, etc.. …

c# debugging breakpoints
gdb, set breakpoint on all functions in a file

Is there a single command in gdb which can set breakpoints on all the functions in a given file ? I …

function gdb breakpoints