HomeSort by relevance Sort by last modified time
    Searched refs:Breakpoint (Results 51 - 72 of 72) sorted by null

1 23

  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.cpp 23 #include "lldb/Breakpoint/BreakpointLocation.h"
239 Breakpoint *entry_break;
251 // process has hit its entry point. When we hit the corresponding breakpoint we
254 // linker function and setup a breakpoint to notify us of any dynamically loaded
278 Breakpoint *dyld_break = target.CreateBreakpoint (break_addr, true).get();
284 // Make sure our breakpoint is at the right address.
  /external/lldb/source/Breakpoint/
BreakpointLocationList.cpp 15 #include "lldb/Breakpoint/BreakpointLocationList.h"
16 #include "lldb/Breakpoint/BreakpointLocation.h"
17 #include "lldb/Breakpoint/Breakpoint.h"
24 BreakpointLocationList::BreakpointLocationList(Breakpoint &owner) :
82 // We never remove a breakpoint locations, so the ID can be translated into
BreakpointIDList.cpp 10 #include "lldb/Breakpoint/BreakpointIDList.h"
12 #include "lldb/Breakpoint/Breakpoint.h"
13 #include "lldb/Breakpoint/BreakpointLocation.h"
144 result.AppendErrorWithFormat ("'%s' is not a valid breakpoint ID.\n", string_array[i]);
155 // an array of space-separated strings, and searches through the arguments for any breakpoint ID range specifiers.
157 // ID range specifiers are found, the range is interpreted and a list of canonical breakpoint IDs corresponding to
213 result.AppendErrorWithFormat ("'%d' is not a valid breakpoint ID.\n", bp_id);
244 result.AppendErrorWithFormat ("'%s' is not a valid breakpoint ID.\n", range_start.c_str());
253 result.AppendErrorWithFormat ("'%s' is not a valid breakpoint ID.\n", range_end)
297 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex (j).get(); local
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV2.h 110 CreateExceptionResolver (Breakpoint *bkpt, bool catch_bp, bool throw_bp);
AppleObjCRuntimeV2.cpp 461 AppleObjCRuntimeV2::CreateExceptionResolver (Breakpoint *bkpt, bool catch_bp, bool throw_bp)
469 Breakpoint::Exact,
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate-locals.js 40 debugger; // Breakpoint.
debug-evaluate-locals-optimized-double.js 187 debugger; // Breakpoint.
debug-evaluate-locals-optimized.js 176 debugger; // Breakpoint.
debug-setbreakpoint.js 181 // Try setting breakpoint by url specified in sourceURL
194 assertTrue(breakListenerCalled, "Break listener not called on breakpoint set by sourceURL");
197 // Breakpoint in a script with no statements test case. If breakpoint is set
203 // Gets a script of 'i1' function and sets the breakpoint at line #4 which
212 // Creates the eval script and tries to set the breakpoint.
  /art/runtime/
debugger.cc 184 class Breakpoint {
186 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
197 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
218 // The location of this breakpoint.
222 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
226 static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
228 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
342 static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
389 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]
    [all...]
  /external/lldb/source/Target/
ThreadPlanCallFunction.cpp 18 #include "lldb/Breakpoint/Breakpoint.h"
19 #include "lldb/Breakpoint/BreakpointLocation.h"
378 // Check if the breakpoint is one of ours.
392 // check the case where we stopped for an internal breakpoint, in that case, continue on.
393 // If it is not an internal breakpoint, consult m_ignore_breakpoints.
409 Breakpoint &bp = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
411 log->Printf ("ThreadPlanCallFunction::PlanExplainsStop: hit breakpoint %d while calling function", bp.GetID());
422 log->Printf ("ThreadPlanCallFunction::PlanExplainsStop hit an internal breakpoint, not stopping.");
430 log->Printf("ThreadPlanCallFunction::PlanExplainsStop: we are ignoring breakpoints, overriding breakpoint stop info ShouldStop, returning true")
    [all...]
StackFrameList.cpp 16 #include "lldb/Breakpoint/BreakpointLocation.h"
17 #include "lldb/Breakpoint/Breakpoint.h"
138 // If we got here because of a breakpoint hit, then set the inlined depth depending on where
139 // the breakpoint was set.
176 Breakpoint &bp_ref = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
    [all...]
Target.cpp 18 #include "lldb/Breakpoint/BreakpointResolver.h"
19 #include "lldb/Breakpoint/BreakpointResolverAddress.h"
20 #include "lldb/Breakpoint/BreakpointResolverFileLine.h"
21 #include "lldb/Breakpoint/BreakpointResolverFileRegex.h"
22 #include "lldb/Breakpoint/BreakpointResolverName.h"
23 #include "lldb/Breakpoint/Watchpoint.h"
89 SetEventName (eBroadcastBitBreakpointChanged, "breakpoint-changed");
356 Breakpoint::Exact,
503 bp_sp.reset(new Breakpoint (*this, filter_sp, resolver_sp));
    [all...]
  /external/chromium_org/v8/src/arm64/
simulator-arm64.h 497 struct Breakpoint {
501 std::vector<Breakpoint> breakpoints_;
502 void SetBreakpoint(Instruction* breakpoint);
507 // When this is set, the Simulator will insert a breakpoint after the next BL
simulator-arm64.cc 999 "Existing breakpoint at %p was %s\n",
1006 Breakpoint new_breakpoint = {location, true};
1009 "Set a breakpoint at %p\n", reinterpret_cast<void*>(location));
1029 // Disable this breakpoint.
1034 PrintF(stream_, "Hit and disabled a breakpoint at %p.\n"
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.debug.core_3.6.0.v20100519.jar 
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
VmMirror.java 30 import org.apache.harmony.jpda.tests.framework.Breakpoint;
101 * Sets breakpoint to given location.
104 * @param breakpoint
107 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint) {
109 return setBreakpoint(typeTag, breakpoint,
114 * Sets breakpoint to given location.
117 * @param breakpoint
119 * Suspend policy for a breakpoint being created
122 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint
    [all...]
  /external/lldb/source/Commands/
CommandObjectProcess.cpp 18 #include "lldb/Breakpoint/Breakpoint.h"
19 #include "lldb/Breakpoint/BreakpointLocation.h"
20 #include "lldb/Breakpoint/BreakpointSite.h"
250 // run, then you could have hit a breakpoint, whose command might switch the value, and
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 12 #include "lldb/Breakpoint/StoppointCallbackContext.h"
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp 13 #include "lldb/Breakpoint/StoppointCallbackContext.h"
589 // breakpoint gets hit. We update all of our image infos and then
600 // DYLD passes three arguments to the notification breakpoint.
    [all...]
  /art/compiler/utils/
assembler_thumb_test.cc     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 

Completed in 1083 milliseconds

1 23