/external/llvm-project/lldb/source/Target/ |
D | StopInfo.cpp | 30 StopInfo::StopInfo(Thread &thread, uint64_t value) in StopInfo() function in StopInfo 37 bool StopInfo::IsValid() const { in IsValid() 44 void StopInfo::MakeStopInfoValid() { in MakeStopInfoValid() 52 bool StopInfo::HasTargetRunSinceMe() { in HasTargetRunSinceMe() 84 class StopInfoBreakpoint : public StopInfo { 87 : StopInfo(thread, break_id), m_should_stop(false), in StopInfoBreakpoint() 95 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint() 575 class StopInfoWatchpoint : public StopInfo { 623 : StopInfo(thread, watch_id), m_should_stop(false), in StopInfoWatchpoint() 906 class StopInfoUnixSignal : public StopInfo { [all …]
|
D | InstrumentationRuntimeStopInfo.cpp | 21 : StopInfo(thread, 0) { in InstrumentationRuntimeStopInfo()
|
D | CMakeLists.txt | 41 StopInfo.cpp
|
D | ThreadPlanStepInRange.cpp | 477 SetStopInfo(StopInfo::CreateStopReasonToTrace(thread)); in DoWillResume()
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | StopInfo.h | 20 class StopInfo { 26 StopInfo(Thread &thread, uint64_t value); 28 virtual ~StopInfo() {} in ~StopInfo() 186 StopInfo(const StopInfo &) = delete; 187 const StopInfo &operator=(const StopInfo &) = delete;
|
D | InstrumentationRuntimeStopInfo.h | 19 class InstrumentationRuntimeStopInfo : public StopInfo {
|
/external/llvm-project/lldb/source/Plugins/Process/Utility/ |
D | StopInfoMachException.cpp | 311 return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in GetStopInfoForHardwareBP() 327 return StopInfo::CreateStopReasonWithBreakpointSiteID(thread, in GetStopInfoForHardwareBP() 367 return StopInfo::CreateStopReasonWithExec(thread); in CreateStopReasonWithMachException() 371 return StopInfo::CreateStopReasonWithSignal(thread, exc_sub_code); in CreateStopReasonWithMachException() 426 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException() 469 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException() 475 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException() 514 return StopInfo::CreateStopReasonWithBreakpointSiteID( in CreateStopReasonWithMachException() 517 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException() 525 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
|
D | StopInfoMachException.h | 18 class StopInfoMachException : public StopInfo { 24 : StopInfo(thread, exc_type), m_exc_data_count(exc_data_count), in StopInfoMachException()
|
/external/ImageMagick/coders/ |
D | gradient.c | 182 StopInfo in ReadGRADIENTImage() 228 stops=(StopInfo *) AcquireQuantumMemory(2,sizeof(*stops)); in ReadGRADIENTImage() 229 if (stops == (StopInfo *) NULL) in ReadGRADIENTImage() 240 stops=(StopInfo *) RelinquishMagickMemory(stops); in ReadGRADIENTImage() 253 stops=(StopInfo *) RelinquishMagickMemory(stops); in ReadGRADIENTImage()
|
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
D | FreeBSDThread.cpp | 464 SetStopInfo(StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id)); in BreakNotify() 467 SetStopInfo(StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id, in BreakNotify() 504 StopInfo::CreateStopReasonWithWatchpointID(*this, wp_sp->GetID())); in WatchNotify() 526 SetStopInfo(StopInfo::CreateStopReasonWithBreakpointSiteID( in TraceNotify() 540 SetStopInfo(StopInfo::CreateStopReasonToTrace(*this)); in TraceNotify() 553 SetStopInfo(StopInfo::CreateStopReasonWithSignal( in SignalNotify() 556 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, signo)); in SignalNotify() 562 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, signo)); in SignalDeliveredNotify() 589 SetStopInfo(StopInfo::CreateStopReasonWithExec(*this)); in ExecNotify()
|
D | POSIXStopInfo.h | 21 class POSIXStopInfo : public lldb_private::StopInfo { 24 : StopInfo(thread, status) {} in POSIXStopInfo()
|
/external/ImageMagick/MagickCore/ |
D | draw.h | 145 } StopInfo; typedef 158 StopInfo
|
D | paint.h | 34 GradientImage(Image *,const GradientType,const SpreadMethod,const StopInfo *,
|
D | paint.c | 404 const GradientType type,const SpreadMethod method,const StopInfo *stops, in GradientImage() 426 assert(stops != (const StopInfo *) NULL); in GradientImage() 602 gradient->stops=(StopInfo *) AcquireQuantumMemory(gradient->number_stops, in GradientImage() 604 if (gradient->stops == (StopInfo *) NULL) in GradientImage()
|
D | draw.c | 353 if (draw_info->gradient.stops != (StopInfo *) NULL) in CloneDrawInfo() 359 clone_info->gradient.stops=(StopInfo *) AcquireQuantumMemory((size_t) in CloneDrawInfo() 361 if (clone_info->gradient.stops == (StopInfo *) NULL) in CloneDrawInfo() 1000 if (draw_info->gradient.stops != (StopInfo *) NULL) in DestroyDrawInfo() 1001 draw_info->gradient.stops=(StopInfo *) RelinquishMagickMemory( in DestroyDrawInfo() 1986 StopInfo in StopInfoCompare() 1990 stop_1=(StopInfo *) x; in StopInfoCompare() 1991 stop_2=(StopInfo *) y; in StopInfoCompare() 2038 qsort(gradient->stops,gradient->number_stops,sizeof(StopInfo), in DrawGradientImage() 2523 StopInfo in RenderMVGContent() [all …]
|
/external/llvm-project/lldb/unittests/Thread/ |
D | ThreadTest.cpp | 121 StopInfo::CreateStopReasonWithBreakpointSiteID(*thread_sp.get(), 0); in TEST_F() 156 StopInfo::CreateStopReasonWithBreakpointSiteID(*thread_sp.get(), 0); in TEST_F()
|
/external/llvm-project/lldb/unittests/Process/ |
D | ProcessEventDataTest.cpp | 84 class DummyStopInfo : public StopInfo { 87 : StopInfo(thread, value), m_should_stop(true), in DummyStopInfo()
|
/external/llvm-project/lldb/source/Plugins/Process/mach-core/ |
D | ThreadMachCore.cpp | 94 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, SIGSTOP)); in CalculateStopInfo()
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ProcessWindows.cpp | 403 stop_info = StopInfo::CreateStopReasonWithBreakpointSiteID(*stop_thread, in RefreshStateAfterStop() 424 stop_info = StopInfo::CreateStopReasonWithWatchpointID( in RefreshStateAfterStop() 432 stop_info = StopInfo::CreateStopReasonToTrace(*stop_thread); in RefreshStateAfterStop() 458 stop_info = StopInfo::CreateStopReasonWithBreakpointSiteID( in RefreshStateAfterStop() 490 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()
|
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | ThreadKDP.cpp | 132 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, SIGSTOP)); in CalculateStopInfo()
|
/external/llvm-project/lldb/examples/summaries/ |
D | lldb | 12 type summary add -w lldb lldb_private::StopInfo -s "ID: ${var.m_stop…
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.cpp | 1818 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo() 1822 StopInfo::CreateStopReasonToTrace(*thread_sp)); in SetThreadStopInfo() 1838 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo() 1875 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithWatchpointID( in SetThreadStopInfo() 1879 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithException( in SetThreadStopInfo() 1885 StopInfo::CreateStopReasonWithExec(*thread_sp)); in SetThreadStopInfo() 1901 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo() 1928 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo() 1941 StopInfo::CreateStopReasonToTrace(*thread_sp)); in SetThreadStopInfo() 1943 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithSignal( in SetThreadStopInfo() [all …]
|
/external/llvm-project/lldb/include/lldb/ |
D | lldb-forward.h | 192 class StopInfo; variable 409 typedef std::shared_ptr<lldb_private::StopInfo> StopInfoSP;
|
/external/llvm-project/lldb/source/Plugins/Process/elf-core/ |
D | ThreadElfCore.cpp | 231 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, m_signo)); in CalculateStopInfo()
|
/external/llvm-project/lldb/source/Plugins/Process/minidump/ |
D | ProcessMinidump.cpp | 349 stop_info = StopInfo::CreateStopReasonWithSignal( in RefreshStateAfterStop() 365 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()
|