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

/freebsd-10.2-release/sys/ofed/include/linux/
H A Dkthread.h49 if (task->should_stop == 0)
52 task->should_stop = TASK_STOPPED;
89 #define kthread_should_stop() current->should_stop
96 task->should_stop = TASK_SHOULD_STOP;
98 while (task->should_stop != TASK_STOPPED)
H A Dsched.h62 int should_stop; member in struct:task_struct
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DUnixSignals.h49 bool &should_stop,
H A DStopInfo.h146 // This creates a StopInfo for the thread where the should_stop is already set, and won't be recalculated.
148 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id, bool should_stop);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadList.cpp290 bool should_stop = false; local
329 should_stop |= true;
332 if (!should_stop && !did_anybody_stop_for_a_reason)
334 should_stop = true;
336 log->Printf ("ThreadList::%s we stopped but no threads had a stop reason, overriding should_stop and stopping.", __FUNCTION__);
340 log->Printf ("ThreadList::%s overall should_stop = %i", __FUNCTION__, should_stop);
342 if (should_stop)
351 return should_stop;
H A DUnixSignals.cpp188 bool &should_stop,
199 should_stop = signal.m_stop;
184 GetSignalInfo( int32_t signo, bool &should_suppress, bool &should_stop, bool &should_notify ) const argument
H A DThread.cpp727 bool should_stop = true; local
734 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", should_stop = 0 (ignore since thread was suspended)",
744 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", should_stop = 0 (ignore since thread was suspended)",
758 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)",
814 should_stop = false;
825 should_stop = plan_ptr->ShouldStop (event_ptr);
837 if (should_stop)
869 should_stop = current_plan->ShouldStop (event_ptr);
871 log->Printf("Base plan says should stop: %i.", should_stop);
882 should_stop
[all...]
H A DStopInfo.cpp125 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) : argument
128 m_should_stop (should_stop),
1100 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id, bool should_stop) argument
1102 return StopInfoSP (new StopInfoBreakpoint (thread, break_id, should_stop));
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp449 bool should_stop = true; local
465 should_stop = InvokeCallback (context);
471 log->Printf ("Hit breakpoint location: %s, %s.\n", s.GetData(), should_stop ? "stopping" : "continuing");
474 return should_stop;
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DPOSIXThread.cpp461 // we create a stop reason with should_stop=false. If there is no breakpoint location, then report
471 const bool should_stop = false; local
472 SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id, should_stop));

Completed in 91 milliseconds