A breakpoint is an intentional stopping or pausing place in a program, put in place for debugging purposes.
0
votes
1answer
22 views
How to modify inline JS before execution/page load in Chrome/FF?
I'm trying to work on a page whose source I don't have access to - the dev's on that side accidentally updated a piece of functionality to point to the wrong domain...
I just want to continue ...
0
votes
0answers
16 views
Breakpoint will not currently be hit, no executable code associated with this line
Before we start, I did check this question first, and it didn't help as implementation was different. This guy was told to delete all exes, dlls and pdb files and recompile.
My app is a standard ...
0
votes
2answers
38 views
Can't apply debug on java file in eclipse
On applying breakpoints to a java file in debug mode, the breakpoints are not stopping the control flow of that file. However, the breakpoints are stopping the control flow on another file in the ...
0
votes
0answers
15 views
Is there a way to organize breakpoints hierarchically on eclipse?
There are some configuration or plugin to able the creation of "breakpoint paths"?
Exemple: If there are some piece of code "B" and "C" that runs many times in your project, but it are just ...
-1
votes
0answers
22 views
ASP.net page stuck on Loading
My ASP.net website was working fine
Until the program stopped responding and I ended the process from Task Manager.
As soon as I ran Microsoft Visual Studio and debugged again the page got stuck on ...
2
votes
0answers
21 views
Debugging Groovy scripts running in a ScriptEngine from IDEA
In my app, I load a script file from the classpath into a String, then pass it into the ScriptEngine. Howerver, the breakpoint set in the script file doesn't trigger. How can I make it work? I use ...
0
votes
0answers
17 views
iOS importing a project not working out with or without ARC
I am failing to implement a project someone else wrote, as a sub-project into another. This problem is concerning a custom Parser and class of TBXML. The container project uses ARC, while the ...
0
votes
1answer
27 views
C# Microsoft HPC IScheduler - Debugging Issue
I have an issue to run a simple code (Hello World) on Microsoft HPC. The code has a breakpoint. After compiling the code in the debug mode, when I submit the executable to the node ( the one I am ...
1
vote
1answer
15 views
Changing navigation using Susy
How can I change the layout of different elements of a page using Susy, for instance, change the top navigation of a page from a bar when on desktop, but a button with a dropdown when on mobile?
2
votes
1answer
18 views
IntelliJ Idea (debugging) conditional breakpoint dependent on other breakpoints
I want to set a debug breakpoint in IntelliJ Idea that is only active, if another previous breakpoint was activated.
For example i have a breakpoint B1 on line 10, and another breakpoint B2 on line ...
1
vote
1answer
12 views
Is 'no breakpoints stop` finally solved in Eclipse PDT + Xdebug?
What is the current state of debugging PHP applications with Eclipse PDT and Xdebug. Has anyone got it finally to work, i.e. to stop at breakpoints defined in Eclipse (not using xdebug_break())?
I've ...
0
votes
0answers
10 views
How to debug with continue and breakpoint in MFC CView::OnActivateView in VIsual Studio 2010?
I am encountering a problem trying to use the debugger in Visual Studio 2010. I want to watch what happens each time my CView object calls OnActivateView so I set a breakpoint in OnActivateView then ...
0
votes
0answers
18 views
What do breakpoint numbers mean in Xcode debugger?
Simple questions but I can't find the answers anywhere.
When Xcode hits a breakpoint, it shows "Thread x: Stopped at breakpoint N" in the right hand margin. These breakpoint numbers seem ...
0
votes
0answers
19 views
Visual studio: set a data breakpoint at a memory ACCESS (i.e. when data is READ)
I really need to figure out when my Fortran project is reading an element of a vector. I use data breakpoint on a daily basis but I could not find a way to set a data breakpoint when my code access ...
0
votes
2answers
32 views
Breakpoint-counter: Only stop at Matlab breakpoint the second (nth) time it is hit
I am looking for a way to set up a conditional breakpoint that only stops the second (or n-th) time the condition is met, for example:
function f = myfunc(x)
for t = 1:1000
x = x+x^0.5; %I want to ...
0
votes
0answers
18 views
How to breakpoint to post-preprocessed code in Visual Studio?
Read C/C++ source file after preprocessing , is it possible to put a breakpoint in the post-preprocessed code in Visual Studio, so one can debug C/C++ code added by macros?
0
votes
0answers
21 views
How to set breakpoints on ARM1176jzs?
I want to program to set a break point on ARM1176jzs. According to the manual, the breakpoint value/control registers are accessible only if DSCR[15:14] is equal to b10, meaning Monitor mode.
And ...
0
votes
0answers
21 views
DOM Exception with JQuery Disables Debugging
I created the world's simplest HTML file:
<html>
<head>
<script type="text/javascript" src="jquery-2.0.0.min.js"/>
<script type="text/javascript">
function boing()
{
...
0
votes
1answer
31 views
gdb: search function by name to set a breakpoint
I'm trying to find out what part of a program prints to stdout.
I can set a breakpoint using command like:
b std::ostream::operator<<(int)
but when i type: b ...
0
votes
1answer
39 views
Eclipse Android - Debugger doesn't stop at breakpoint on OnClick method
I want to debug my onClick method in my SaveActivity:
public class SaveActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
...
0
votes
1answer
21 views
Hide popup window when debugging
When I hit a break point whilst a popup window has its "IsOpen" property set to true, it renders on top of visual studio, obscuring the code I'm trying to step through.
Is there anyway I can resolve ...
0
votes
1answer
71 views
Can a breakpoint display the contents of “const unsigned char* variable”?
I'm on the trail of why the contents of a TXT record in a Bonjour service discovery is sometimes being incompletely interpreted, and I've reached a point where it would be really useful to have a ...
1
vote
1answer
32 views
Windbg: Is there a way to Import/Export native breakpoints?
Is there a way to Import/Export native breakpoints?
What I do now is have a notepad of interesting breakpoints like the following.
bp foo!bar;bp foo!barbar; bp foo!barbarbar; .................
I ...
1
vote
5answers
41 views
Meaning of crossed out breakpoint in Eclipse [duplicate]
what is the meaning of this break point icon? Why is it crossed out?
0
votes
1answer
56 views
Unable to set breakpoints in Chrome dev tools, version 26.0.1410.64 m
I need to debug some JavaScript an' I use Chrome dev tools. I'm a newby in JavaScript (just started to learn a couple of days ago), an' at work I could set breakpoints via the Resources pane. But at ...
4
votes
2answers
117 views
How to disable in the node debugger “break on first line”
Is there a command line argument or an environment variable that disables the "break on first line" feature of the node debugger?
2
votes
1answer
84 views
How to use breakpoints in F# files in C#/F# MVC4?
I am in the middle of a rather large project that uses the C#-F# MVC4 template. The template breaks up the solution into two projects: [ProjectName]Web and [ProjectName]WebApp. All of the F# code ...
0
votes
1answer
39 views
How to set a breakpoint in a specific method of a specific object?
I have a nasty bug in my C++ project. There's a class
class SomeClass {
...
std::string *someString;
...
}
Here's a constructor
SomeClass(...) {
...
someString = new ...
0
votes
1answer
35 views
Visual Studio disassembly: losing breakpoints
I'm working with Visual Studio 2010, using and .exe (without the original code so I can only see the asembler).
The code it has been generated from is similar to this one (not exactly, it has unknown ...
0
votes
0answers
53 views
Why does an activity indicator still spin when an app is paused?
I created a simple application with just a button and an activity indicator. When I press the button I have the activity indicator start animating. In Xcode 4.6 iPhone 6.1 Simulator I see the ...
1
vote
1answer
36 views
Linux kernel hardware break points
I want to build a simple linux kernel debugger for the x86 architecture. I first want it to set break points. I was wondering if there is a kernel api for configuring the debugger registers and if so ...
0
votes
1answer
41 views
How do you add breakpoint actions via the LLDB command line?
If you edit a breakpoint from Xcode, there is the super-useful option to add an "Action" to be automatically executed every time the breakpoint is hit.
How can you add such actions from the LLDB ...
0
votes
0answers
54 views
C++ (VS2010 &2012): Breakpoint will not be currently be hit in; No symbols have been loaded for this document
I have 4 projects under 1 solution in VS(2012), and I'm using C++. I am getting this error for a couple of days now. I tried all resolutions but didn't get any success. I can debug 3 out of 4 projects ...
-1
votes
1answer
34 views
Breakpoint created a bug
I have one program built in Visual Studio 2012 with:
#include <device_dll.h>
Typedef typedef BOOL (__stdcall *ReadCallback) (..., void *obj);
static ReadCallback ReadCallbacAPtr;
class ...
0
votes
1answer
36 views
How do I set a breakpoint in based on a registry key being read?
I have an executable that uses a mix of managed and unmanaged code. I don't have the source code to it, but I can decompile it.
What I do know is at some point it reads a registry key, and then ...
1
vote
1answer
31 views
VC++ 2010 ignoring breakpoints
Last Friday before I went home for the weekend, breakpoints in my code were working fine. Today, they are not working fine.
Since last Friday, I
Rebooted my computer
Downloaded new source code ...
1
vote
1answer
27 views
Strange behavior: Visual studio 2008 with SP1 step over when debugging will skip lots of statements
Windows 8 64 bit, Visual Studio 2008 SP1, the break point can be hit, but step over after several steps from the break point will suddenly "jump" to statements far after the current running statement.
...
0
votes
1answer
17 views
Setting a break-point causes asp.net to recompile in VS2012
When i set a break point while debugging in ASP.net VS2012, the entire application restarts.
This was not the behaviour in VS2010.
Please how can i prevent the restart each time i set a breakpoint ...
1
vote
1answer
23 views
Import/Export breakpoints sets
Eclipse has ability to "Import/Export breakpoints to file". Is in Intellij Idea similar feature ?
For example :
I develop CoolFeature1 and have 30 brakepoints (20 active, and 10 passive), then i ...
1
vote
0answers
71 views
Qt - breakpoints don't work + “Unexpected GDB Exit”
I'm using Qt Creator 2.7.0 based on QT 4.8.4 (32 bit) with Ming 4.4 on windows. My Qt projects run without any problem in Release and Debug mode. However, when I try to debug, breakpoints don't work ...
0
votes
1answer
73 views
Setting memory breakpoint in Visual Studio 2012
I need to set breakpoint that watches a specific address in memory (e.g. 0x0483d7cc) that is hit when the content changes. I am using Visual Studio 2012 and C++. How can I do that?
1
vote
2answers
71 views
How to set breakpoints programmatically in Visual C++?
What I am trying to do is to monitor memory value changes at some specific addresses, like binding a callback func to the 'onChange' event.
One idea for now that I can think up is to use memory ...
0
votes
1answer
24 views
Chrome Dev Tools - time elapsed between breakpoints
In the Chrome Developer Tools, after adding two breakpoints in a JavaScript file and executing the whole code, is there any way to measure the time elapsed between them?
0
votes
0answers
15 views
XCode: placing cursor at breakpoint location on breakpoint hit
I want to remove several breakpoints along my program execution path. XCode stops at each breakpoint and I want to clear it immediately. In contrast to all other tools that I used to, Xcode does not ...
0
votes
1answer
21 views
XCode EXC_BAD_ACCESS crash on device but not simulator - debugging with breakpoints
I'm not sure what happened, I think I did not make any significant changes to the code, but now I cannot run or debug the app.
Thread 1: EXC_BAD_ACCESS (code=2, address=0x2fd77d4c)
I cannot even ...
0
votes
1answer
64 views
how to set a breakpoint at the middle of a line of C# code?
For example, I have the following code,
Variable.Method1().Method2();
I want to set the breakpoint after Method1() and before Method2(). Can I do so in visual studio? How to do it? Thanks.
1
vote
1answer
64 views
how can i find caller from specific line in trace mode in delphi?
happy new solar year.
in delphi IDE, we can put a breakpoint on specific line,
then when run in debug mode, program stops on that.
consider a method called by another. how we can find who calls ...
0
votes
1answer
25 views
GNU GDB: customize watchpoint output format
Every time a watchpoint is modified GDB will print the old value and the new value. However, sometimes I don't want to print the value in the default decimal integer format: for instance, if I'm ...
0
votes
1answer
36 views
How can I make Eclipse to break on ALL uncaught exceptions?
I am writing a Java program using Eclipse Juno.
When I run the program, and it meets an exception, program just dies with back trace. I set these exception breakpoint to debug at time for any ...
0
votes
1answer
74 views
FlashDevelop breakpoints for Haxe CPP, allowing “Step-Into” functionality?
Is there a way to set a break-point in FlashDevelop when targeting a Haxe/NME program for windows? It is very hard to follow the logic of a bug if I cannot step into the code.





