Home
last modified time | relevance | path

Searched refs:breakpoint (Results 1 – 22 of 22) sorted by relevance

/art/test/995-breakpoints-throw/
Dexpected.txt1 Test "call Test995::breakpoint": Running breakpoint with handler "do nothing"
2 Breakpoint: public static void art.Test995.breakpoint() @ line=34
3 Test "call Test995::breakpoint": No error caught with handler "do nothing"
4 Test "call Test995::breakpoint": Finished running with handler "do nothing"
5 Test "call Test995::breakpointCatch": Running breakpoint with handler "do nothing"
9 Test "call Test995::breakpointCatchLate": Running breakpoint with handler "do nothing"
13 Test "catch subroutine Test995::breakpoint": Running breakpoint with handler "do nothing"
14 Breakpoint: public static void art.Test995.breakpoint() @ line=34
15 Test "catch subroutine Test995::breakpoint": No error caught with handler "do nothing"
16 Test "catch subroutine Test995::breakpoint": Finished running with handler "do nothing"
[all …]
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
3 Tests that it is possible to throw exceptions while handling breakpoint events
/art/test/996-breakpoint-obsolete/
Dexpected.txt1 Initially setting breakpoint to line 42
3 Should be after first breakpoint.
7 Setting breakpoint on now obsolete method to line 40
9 Should be after first breakpoint.
12 Setting initial breakpoint on redefined method.
Dinfo.txt1 Test JVMTI breakpoint/obsolete method interaction.
/art/test/994-breakpoint-line/
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
5 paths and then runs the function, receiving the breakpoint events.
/art/test/1947-breakpoint-redefine-deopt/
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
5 paths and then runs the function, receiving the breakpoint events.
/art/test/1956-pop-frame-jit-calling/
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
3 This test places a breakpoint on the first instruction of a number of functions
Dexpected.txt1 Test stopped using breakpoint
4 Test stopped using breakpoint with declared synchronized function
7 Test stopped using breakpoint with synchronized block
/art/test/1955-pop-frame-jit-called/
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
3 This test places a breakpoint on the first instruction of a number of functions
Dexpected.txt1 Test stopped using breakpoint
4 Test stopped using breakpoint with declared synchronized function
7 Test stopped using breakpoint with synchronized block
/art/test/1954-pop-frame-jit/
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
3 This test places a breakpoint on the first instruction of a number of functions
Dexpected.txt1 Test stopped using breakpoint
4 Test stopped using breakpoint with declared synchronized function
7 Test stopped using breakpoint with synchronized block
/art/test/993-breakpoints/
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
3 This test places a breakpoint on the first instruction of a number of functions
/art/test/1953-pop-frame/
Dinfo.txt1 Test basic JVMTI breakpoint functionality.
3 This test places a breakpoint on the first instruction of a number of functions
Dexpected.txt1 Test stopped using breakpoint
4 Test stopped using breakpoint with declared synchronized function
7 Test stopped using breakpoint with synchronized block
/art/test/995-breakpoints-throw/src/art/
DTest995.java33 public static void breakpoint() { in breakpoint() method in Test995
102 makeTest("call Test995::breakpoint", Test995::breakpoint),
108 breakpoint();
/art/test/1929-exception-catch-exception/
Dexpected.txt1 Test "art.Test1929$DoThrowClass": Running breakpoint with handler "art.Test1929$DoNothingHandler"
11 Test "art.Test1929$DoThrowCatchBaseTestException": Running breakpoint with handler "art.Test1929$Do…
25 Test "art.Test1929$DoThrowCatchBaseTestExceptionTwice": Running breakpoint with handler "art.Test19…
39 Test "art.Test1929$DoThrowCatchTestException": Running breakpoint with handler "art.Test1929$DoNoth…
53 Test "art.Test1929$DoThrowCatchTestExceptionTwice": Running breakpoint with handler "art.Test1929$D…
67 Test "art.Test1929$DoThrowCatchTestExceptionNoRethrow": Running breakpoint with handler "art.Test19…
77 Test "art.Test1929$DoThrowClass": Running breakpoint with handler "art.Test1929$ThrowCatchBase"
87 Test "art.Test1929$DoThrowCatchBaseTestException": Running breakpoint with handler "art.Test1929$Th…
102 Test "art.Test1929$DoThrowCatchBaseTestExceptionTwice": Running breakpoint with handler "art.Test19…
116 Test "art.Test1929$DoThrowCatchTestException": Running breakpoint with handler "art.Test1929$ThrowC…
[all …]
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md19 * The breakpoint\_location is a number that's a valid jlocation for the runtime
27 set the breakpoint. This means that classes might be initialized earlier than
31 * Deviating from this format or including a breakpoint that cannot be found at
/art/tools/jvmti-agents/
DREADME.md8 * [libbreakpointlogger](./breakpoint-logger)
/art/test/
DAndroid.bp269 "996-breakpoint-obsolete/obsolete_breakpoints.cc",
503 "1947-breakpoint-redefine-deopt/check_deopt.cc",
626 "994-breakpoint-line/src/art/Test994.java",
628 "996-breakpoint-obsolete/src/art/Test996.java",
726 "994-breakpoint-line/expected.txt",
728 "996-breakpoint-obsolete/expected.txt",
/art/test/993-breakpoints/src/art/
DTest993.java40 public static void breakpoint() { in breakpoint() method in Test993
478 new InvokeDirect("Test993::breakpoint", Test993::breakpoint),
/art/runtime/
Ddebugger.cc3279 for (Breakpoint& breakpoint : gBreakpoints) { in FindFirstBreakpointForMethod()
3280 if (breakpoint.IsInMethod(m)) { in FindFirstBreakpointForMethod()
3281 return &breakpoint; in FindFirstBreakpointForMethod()
3296 for (const Breakpoint& breakpoint : gBreakpoints) { in SanityCheckExistingBreakpoints() local
3297 if (breakpoint.IsInMethod(m)) { in SanityCheckExistingBreakpoints()
3298 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind()); in SanityCheckExistingBreakpoints()
5207 for (Breakpoint& breakpoint : gBreakpoints) { in VisitRoots()
5208 breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize); in VisitRoots()