Tagged Questions
0
votes
0answers
41 views
Non-breaking breakpoint constantly triggers OnMouseMove event in Delphi XE3
I was trying to use a non-breaking breakpoint to log some values in a control's OnMouseMove event handler. I noticed that the breakpoint was constantly being hit while the mouse was idle (not moving) ...
1
vote
0answers
16 views
How to adjust the Summary Format to expose a float** as a float[][]?
I'm using XCode to debug some code. Specifically, the code that I'm debugging exposes a float[][] as float**. I am unable to change this syntax, but I'm not certain it would help anyway.
After ...
0
votes
1answer
34 views
Xcode Exception Breakpoint Always Pauses On Property
This has driven me nuts for a long time now. I am using Xcode 4.6 but this has been happening for several versions. When I turn on breakpoints and add the Exception Breakpoint, it always pauses on a ...
0
votes
0answers
12 views
WebStorm debugger don't wait on breakpoint
WebStorm version is 6.0.1 Build#WS-127.122
OS : osx 10.8.2
nodejs version : 0.10.7 (64bit)
Following is code
var async = require('async');
var isResolved = false; // 1's breakpoint
async.series([
...
2
votes
2answers
68 views
Alternative IDE supporting debugging for Google App Engine in Python (Eclipse + PyDev no debug support on SDK 1.7.6+)
I'm developing on GAE-Python 2.7 using Eclipse+PyDev as IDE. Since GAE SDK 1.7.6 (March 2013), where Google "broke" support for breakpoints*, I've been using the old dev server to continue debugging ...
0
votes
2answers
31 views
How to show currently debugged line in PHPStorm?
Got remote debugging working in PHPStorm (version 6.0.2.) and every time execution stops on a breakpoint it shows me the current variables etc.
But it does not actually show me the file and line ...
4
votes
1answer
66 views
Setting multiple breakpoint in Visual Studio 2012 [duplicate]
I would like to set breakpoint all Convert.ToInt32 lines.
I have tried to replace all Convert.ToInt32 to System.Diagnostics.Debugger.Break(); Convert.ToInt32 but it did not work because some of the ...
0
votes
1answer
14 views
Eclipse dll breakpoint
I have two projects in my Eclipse Workspace. The first one builds a dll while the other one is an executable which uses that dll. I would like to be able to set a breakpoint into the dll so that when ...
0
votes
0answers
3 views
Debugger Stops by Itself
Using Visual Studio 2003 on Windows XP Professional SP2: When debugging a C# ASP.NET application locally, the debugger will stop by itself, without the stop button being closed or the IE window that ...
0
votes
0answers
29 views
How to trace-debug-breakpoint ant build under Eclipse?
I have an exception occurring while building ant target. Exception information contains hyperlinks in Console window, which lead to some points in code. Unfortunately, if I set breakpoint there, it ...
0
votes
1answer
24 views
Eclipse debugger suspends on every republish
I'm working on a web project in Eclipse Juno. It's deployed on a Websphere 7.0 server using the IBM plugin. Recently I have started having a problem where every time I republish to the server, ...
0
votes
0answers
28 views
Visual Studio 2012 not debugging or compiling one specific method
My debugger in VS 2012 will not break at any breakpoints in only one specific method in a class. It also wont step into that method from any calling code.
Other methods in that class are stepping ...
0
votes
0answers
39 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
55 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
1answer
44 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 ...
2
votes
1answer
36 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 ...
0
votes
0answers
15 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
39 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
65 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
28 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 ...
1
vote
5answers
65 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
92 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
143 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?
0
votes
1answer
44 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 ...
1
vote
1answer
50 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
84 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
1answer
41 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
35 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
34 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.
...
1
vote
0answers
100 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
28 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
28 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
67 views
CodeBlocks Breakpoints Ignoring Scope
I set a breakpoint inside a conditional statement that checks for a certain value of a custom datatype. The game will break, but the line it breaks on is completely outside of my breakpoint's scope. ...
0
votes
0answers
63 views
how do i continue on breakpoint in gdb automatically
I'm debugging my linux kernel module. It causes deadlock and i'm trying to figure out how. I'm using vmware + gdb. The idea is to hook the function and log backtrace into the file. I'm trying the ...
0
votes
3answers
52 views
Breakpoints does not point to the actual code
Does anyone have a clue what could cause a breakpoint not to show the actual place of the code in a specific file?
This is the second time this has happened to me.. maybe someone could help, my ...
2
votes
4answers
63 views
how to find the place where a Thread was started from a breakpoint
This is my situation:
I am studying a large codebase, running on Java1.7, not very easy to move around, lots of interfaces, deep inheritance trees, lots of threads etc.
I put a breakpoint in some ...
3
votes
1answer
59 views
how does debugger resume from breakpoint?
Assume a debugger(common x86 ring3 debugger such as olly, IDA, gdb...) sets a
software breakpoint to virtual address 0x1234.
this is accomplished by replacing the whatever opcode at 0x1234 to '0xCC'
...
1
vote
0answers
106 views
Watching data flow in javascript debugger in Firefox or Chrome
I have a complex problem to solve. I want to figure out a way where I can create a log of all variables names, function arguments (including function names) and their respective line numbers if any of ...
0
votes
4answers
114 views
How can I debug javascript contained in $(document).ready()? [duplicate]
I'm trying to debug some js in the browser (Chrome specifically). How can I check what value is set for some_data and new_data?
I realized due to variable scope being confined to functions, ...
0
votes
1answer
803 views
Visual studio C# debugger - the breakpoint will not currently be hit
I know that this question have been asked several times and many people here have suggested different answers. Though none of them are working for me.
I created a windows forms application with ...
0
votes
1answer
132 views
Eclipse RCP Juno debugger doesn't stop at break points
I am using Eclipse RPC Juno for modifying existing plugin projects. I have Java 1.7. When I run the application in debug mode, it doesn't stop at break points. I am certain that the code is executed.
...
0
votes
0answers
43 views
How to know what javascript file manipulates codes like “javascript:void(0)”?
I'm needing help to debug a code.
If we have a code like this one:
<a href="javascript:void(0)">My link</a>
How could I know what javascript file manipulates the click on this element?
...
1
vote
1answer
80 views
How to debug R code in Eclipse
I have been coding a lot of R code for the past few year but I actually never found how to debug R code (i am using Eclipse) and it has been very frustrating and time consuming.
Do you know if it is ...
3
votes
1answer
112 views
Setting a Java breakpoint on a one-line conditional return statement
Do any Java debuggers allow you to set a breakpoint on the someOperation(); method invocation statement in the following statement?
if (someCondition()) someOperation();
Note that I'm looking for ...
2
votes
2answers
44 views
How to see all changes in complex variable using Eclipse Juno
I have a complex object, with 30 or so fields, which themselves contain objects which have lots of fields.
What I really want to do is this; when at a breakpoint, ctrl-c to copy the entire structure ...
1
vote
1answer
273 views
Xcode LLDB: How do I set a conditional breakpoint based on the this pointer?
I have a c++ application and am trying to debug it under Xcode using LLDB. I would like to stop inside a member function, but only when the this pointer matches a specific instance.
I have tried ...
1
vote
2answers
180 views
Breakpoints does not work in Firefox (19.0) using Firebug(1.11.2)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>An example</title>
<script ...
0
votes
0answers
29 views
faster conditional breakpoints
This is a debugging tip, not a question.
I set a conditional breakpoint in a loop and was dismayed when the program slowed to a crawl.
So I disabled the breakpoint and added code to pause the ...
1
vote
1answer
34 views
Eclipse debugger stops on equivalent location at old project instead of actual breakpoint location at new project
I have two web projects, A and B, in the same workspace, that most of their packages and classes are similar.
(I deploy my war files to Jboss).
I've set a breakpoint at some class of project B. ...
0
votes
0answers
42 views
add new breakpoint when debugging with visual studio 2008 slow
I use visual studio 2008 to debug a native c++ program. When I press F9 to add new breakpoints, the IDE takes me 20 sec to wait it. While if I add a breakpoint at a place where use to be one, it is ...





