Searched refs:should_stop (Results 1 - 14 of 14) sorted by relevance

/freebsd-11.0-release/sys/compat/linuxkpi/common/include/linux/
H A Dkthread.h53 if (task->should_stop == 0)
56 task->should_stop = TASK_STOPPED;
88 #define kthread_should_stop() current->should_stop
95 task->should_stop = TASK_SHOULD_STOP;
97 while (task->should_stop != TASK_STOPPED)
H A Dsched.h66 int should_stop; member in struct:task_struct
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanPython.cpp88 bool should_stop = true; local
95 should_stop = script_interp->ScriptedThreadPlanShouldStop (m_implementation_sp, event_ptr, script_error);
100 return should_stop;
136 // I don't really need mischief_managed, since it's simpler to just call SetPlanComplete in should_stop.
H A DThreadList.cpp300 bool should_stop = false; local
306 should_stop = true;
346 should_stop |= true;
349 if (!should_stop && !did_anybody_stop_for_a_reason)
351 should_stop = true;
353 log->Printf ("ThreadList::%s we stopped but no threads had a stop reason, overriding should_stop and stopping.", __FUNCTION__);
357 log->Printf ("ThreadList::%s overall should_stop = %i", __FUNCTION__, should_stop);
359 if (should_stop)
368 return should_stop;
[all...]
H A DUnixSignals.cpp239 bool &should_stop,
250 should_stop = signal.m_stop;
235 GetSignalInfo( int32_t signo, bool &should_suppress, bool &should_stop, bool &should_notify ) const argument
H A DThread.cpp805 bool should_stop = true; local
812 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", should_stop = 0 (ignore since thread was suspended)",
820 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", should_stop = 0 (ignore since thread was suspended)",
832 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", pc = 0x%16.16" PRIx64 ", should_stop = 0 (ignore since no stop reason)",
886 should_stop = false;
897 should_stop = plan_ptr->ShouldStop (event_ptr);
909 if (should_stop)
938 should_stop = current_plan->ShouldStop (event_ptr);
940 log->Printf("Base plan says should stop: %i.", should_stop);
951 should_stop
[all...]
H A DStopInfo.cpp123 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) : argument
125 m_should_stop (should_stop),
1153 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id, bool should_stop) argument
1155 return StopInfoSP (new StopInfoBreakpoint (thread, break_id, should_stop));
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanShouldStopHere.h46 ThreadPlanShouldStopHereCallbacks(ThreadPlanShouldStopHereCallback should_stop, argument
49 should_stop_here_callback = should_stop;
H A DUnixSignals.h52 bool &should_stop,
H A DStopInfo.h159 // This creates a StopInfo for the thread where the should_stop is already set, and won't be recalculated.
161 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id, bool should_stop);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp467 bool should_stop = true; local
482 should_stop = InvokeCallback (context);
488 log->Printf ("Hit breakpoint location: %s, %s.\n", s.GetData(), should_stop ? "stopping" : "continuing");
491 return should_stop;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp498 // we create a stop reason with should_stop=false. If there is no breakpoint location, then report
511 const bool should_stop = false; local
512 SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id, should_stop));
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2513 bool should_stop = false; local
2527 should_stop = true;
2533 if (should_stop)
3031 bool should_stop = false; local
3046 should_stop = true;
3052 if (should_stop)
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1808 bool should_stop = true; local
1815 should_stop = g_swig_call_thread_plan(generic->GetValue(), "should_stop", event, script_error);
1819 return should_stop;

Completed in 206 milliseconds