Home
last modified time | relevance | path

Searched refs:thread_state (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/libunwind/src/
H A DUnwindRegistersSave.S28 # extern int __unw_getcontext(unw_context_t* thread_state)
33 # + thread_state pointer +
71 # extern int __unw_getcontext(unw_context_t* thread_state)
74 # thread_state pointer is in rdi
134 # extern int __unw_getcontext(unw_context_t* thread_state)
137 # thread_state pointer is in a0 ($4)
243 # extern int __unw_getcontext(unw_context_t* thread_state)
246 # thread_state pointer is in a0 ($4)
276 # extern int __unw_getcontext(unw_context_t* thread_state)
741 @ extern int __unw_getcontext(unw_context_t* thread_state)
[all …]
H A DUnwindRegistersRestore.S33 # + thread_state pointer +
76 # On entry, thread_state pointer is in rcx; move it into rdi
841 # thread_state pointer is in r3
890 # thread_state pointer is in r2
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dinfttrace.c1365 get_process_first_stopped_thread_id (int pid, ttstate_t *thread_state) in get_process_first_stopped_thread_id() argument
1372 (TTRACE_ARG_TYPE) thread_state, in get_process_first_stopped_thread_id()
1373 (TTRACE_ARG_TYPE) sizeof (*thread_state), in get_process_first_stopped_thread_id()
1399 return thread_state->tts_lwpid; in get_process_first_stopped_thread_id()
1413 get_process_next_stopped_thread_id (int pid, ttstate_t *thread_state) in get_process_next_stopped_thread_id() argument
1421 (TTRACE_ARG_TYPE) thread_state, in get_process_next_stopped_thread_id()
1422 (TTRACE_ARG_TYPE) sizeof (*thread_state), in get_process_next_stopped_thread_id()
1442 return thread_state->tts_lwpid; in get_process_next_stopped_thread_id()
1457 ttstate_t thread_state; in get_active_tid_of_pid() local
1459 return get_process_first_stopped_thread_id (pid, &thread_state); in get_active_tid_of_pid()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTrace.cpp313 for (const TraceThreadState &thread_state : in RefreshLiveProcessState() local
315 for (const TraceBinaryData &item : thread_state.binary_data) in RefreshLiveProcessState()
316 m_storage.live_thread_data[thread_state.tid].insert( in RefreshLiveProcessState()
H A DThread.cpp980 StateType thread_state = GetResumeState(); in ShouldReportStop() local
985 if (thread_state == eStateSuspended || thread_state == eStateInvalid) { in ShouldReportStop()
1041 StateType thread_state = GetResumeState(); in ShouldReportRun() local
1043 if (thread_state == eStateSuspended || thread_state == eStateInvalid) { in ShouldReportRun()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp777 const StateType thread_state = thread.GetState(); in MonitorSignal() local
778 if (!StateIsStoppedState(thread_state, false)) { in MonitorSignal()
806 GetID(), thread.GetID(), thread_state); in MonitorSignal()
1020 const auto thread_state = thread->GetState(); in Interrupt() local
1021 if (thread_state == eStateRunning || thread_state == eStateStepping) { in Interrupt()
1024 } else if (!stopped_thread && StateIsStoppedState(thread_state, true)) { in Interrupt()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp570 for (const TraceThreadState &thread_state : state.traced_threads) { in DoRefreshLiveProcessState() local
572 GetLiveProcess()->GetThreadList().FindThreadByID(thread_state.tid); in DoRefreshLiveProcessState()
574 thread_state.tid, std::make_unique<ThreadDecoder>(thread_sp, *this)); in DoRefreshLiveProcessState()