Questions tagged [step-into]
80 questions
69
votes
8 answers
(Android Studio) How to debug through my code only?
When I try to debug through my code in Android (using Step Into, F7 command), the debugger takes me through all system classes, which I do not want.
For example, when I place a breakpoint at the 2nd line below (i.e. "startActivity(ourIntent);"),…

user1406716
- 9,565
- 22
- 96
- 151
49
votes
1 answer
What is the difference between Step in, Step out and Step Over?
I'm doing a project in which I used Debugging using visual studio code. I need some clear differences between Step in, Step out and Step Over. I saw vs code debugging documentation but it has no such details related to these. Anyone have idea ?

Danish
- 792
- 1
- 5
- 14
40
votes
17 answers
Getting rid of "There is no source code available for the current location."
OK, this is my own fault, but I can't seem to rescue myself.
Whenever I try to step into a class that has fields with assignments calling into .NET code, I get a dialog box that contains the text "There is no source code available for the current…

Lasse V. Karlsen
- 380,855
- 102
- 628
- 825
28
votes
2 answers
How to step into C/C++ DLL from C# application while debugging
I have two project in my solution: C/C++ Win32 DLL and some C# application.
What I have to do to be able to step into DLL while debugging?
I switched on all debugging options in C++ project's settings and copied to C# application root next files:…

abatishchev
- 98,240
- 88
- 296
- 433
23
votes
7 answers
Enable and disable "Step into" debugging on certain project in a Visual Studio solution
I have a Visual Studio solution with four C# projects in it. I want to step into the code of a supporting project in the solution from my main project, but when I use the "Step into" key, it just skips over the call into that other project. I've set…

SqlRyan
- 33,116
- 33
- 114
- 199
13
votes
2 answers
Stepping into Specific Function in GDB
Does GDB support Stepping into a Specific function, say either f or g, on lines containing expressions of nested function calls such as
f(g());
similar to what Visual Studio 2010 support. Maybe a GDB script is the solution?

Nordlöw
- 11,838
- 10
- 52
- 99
11
votes
5 answers
Stepping into a P/Invoke call in disassemby view
My C# code is calling an unmanaged third-party library function via P/Invoke, and the unmanaged function is having some strange side effects. I want to debug into it and see what it's doing.
If I debug my C# code, and try to "Step Into" the P/Invoke…

Joe White
- 94,807
- 60
- 220
- 330
10
votes
3 answers
Stepping over method without symbols - How to step into?
Using Visual Studio 2008 SP1 and a VB.NET project; I have some code which i cannot step into. The Immediate Window shows the message
"Stepping over method without symbols 'Some.Namespace.Here'"
How can i make sure the method always has symbols?! I…

joedotnot
- 4,810
- 8
- 59
- 91
9
votes
1 answer
Reasons why PL/SQL Developer's debugger won't enter a procedure?
I am trying to debug a procedure using PL/SQL developer's built-in debugger.
After stepping over the BEGIN, when the debugger is over the actual procedure call, the "step-into" button will just execute the procedure without entering it.
Any…

Nico Mezeret
- 193
- 1
- 1
- 7
9
votes
2 answers
using gdb to step into 3rd party functions with shared libraries
I am using gdb and some shared libraries. I can get gdb to step into my own shared library, but not a 3rd party one.
When using gdb, I expect "s" (step) to step into the 3rd party library and show me the lines it is executing inside these opj_*…

Peter
- 3,067
- 2
- 17
- 18
9
votes
5 answers
Debug custom dll that is being referenced in visual studio macro
I previously asked: Add dll reference to visual studio macros
the idea of creating the macros in my language (C#) makes it easier to create the macros. The problem is that I cannot debug the dll
To solve the problem I have tried:
I placed…

Tono Nam
- 34,064
- 78
- 298
- 470
8
votes
1 answer
Select which method to "Step Into" in debugger
Netbeans has a nice "Step Into" feature where if there are multiple method calls on the same line, you can use the arrow keys to choose which one you meant. You can see a screenshot and description on this new and noteworthy page.
I am wondering,…

Brian Harris
- 2,735
- 3
- 22
- 34
7
votes
1 answer
Visual Studio: step into assembly
I have a project that references an assembly that I have the code to. I also have all of the PDB files, etc. However, at some point I clicked the wrong button on a dialog box while debugging, and now I can no longer step into the assembly code. I…

A.R.
- 15,405
- 19
- 77
- 123
6
votes
2 answers
Eclipse step into debugging
I just put eclipse on my laptop, and when I use the Step Into debugging tool, it doesn't just take me to the next part of my code. An example is if I call .size(); on an array list, it will take me into the array list class and through all the code…

vimalloc
- 3,869
- 4
- 32
- 45
6
votes
1 answer
VS debugger doesn't load natstepfilter files
I'm debugging applications that make heavy use of STL and in order not to be ramming Shift-F11 on the keyaboard whole day long I have a my.natstepfilter file in C:\Program Files (x86)\Microsoft Visual Studio…

stijn
- 34,664
- 13
- 111
- 163