Home
last modified time | relevance | path

Searched refs:StopInfo (Results 1 – 25 of 31) sorted by relevance

12

/external/llvm-project/lldb/source/Target/
DStopInfo.cpp30 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 …]
DInstrumentationRuntimeStopInfo.cpp21 : StopInfo(thread, 0) { in InstrumentationRuntimeStopInfo()
DCMakeLists.txt41 StopInfo.cpp
DThreadPlanStepInRange.cpp477 SetStopInfo(StopInfo::CreateStopReasonToTrace(thread)); in DoWillResume()
/external/llvm-project/lldb/include/lldb/Target/
DStopInfo.h20 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;
DInstrumentationRuntimeStopInfo.h19 class InstrumentationRuntimeStopInfo : public StopInfo {
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DStopInfoMachException.cpp311 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()
DStopInfoMachException.h18 class StopInfoMachException : public StopInfo {
24 : StopInfo(thread, exc_type), m_exc_data_count(exc_data_count), in StopInfoMachException()
/external/ImageMagick/coders/
Dgradient.c182 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/
DFreeBSDThread.cpp464 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()
DPOSIXStopInfo.h21 class POSIXStopInfo : public lldb_private::StopInfo {
24 : StopInfo(thread, status) {} in POSIXStopInfo()
/external/ImageMagick/MagickCore/
Ddraw.h145 } StopInfo; typedef
158 StopInfo
Dpaint.h34 GradientImage(Image *,const GradientType,const SpreadMethod,const StopInfo *,
Dpaint.c404 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()
Ddraw.c353 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/
DThreadTest.cpp121 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/
DProcessEventDataTest.cpp84 class DummyStopInfo : public StopInfo {
87 : StopInfo(thread, value), m_should_stop(true), in DummyStopInfo()
/external/llvm-project/lldb/source/Plugins/Process/mach-core/
DThreadMachCore.cpp94 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, SIGSTOP)); in CalculateStopInfo()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.cpp403 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/
DThreadKDP.cpp132 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, SIGSTOP)); in CalculateStopInfo()
/external/llvm-project/lldb/examples/summaries/
Dlldb12 type summary add -w lldb lldb_private::StopInfo -s "ID: ${var.m_stop…
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1818 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/
Dlldb-forward.h192 class StopInfo; variable
409 typedef std::shared_ptr<lldb_private::StopInfo> StopInfoSP;
/external/llvm-project/lldb/source/Plugins/Process/elf-core/
DThreadElfCore.cpp231 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, m_signo)); in CalculateStopInfo()
/external/llvm-project/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp349 stop_info = StopInfo::CreateStopReasonWithSignal( in RefreshStateAfterStop()
365 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()

12