Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/ofed/opensm/opensm/
H A Dosm_vl15intf.c142 if (p_vl->thread_state == OSM_THREAD_STATE_NONE) in vl15_poller()
143 p_vl->thread_state = OSM_THREAD_STATE_RUN; in vl15_poller()
145 while (p_vl->thread_state == OSM_THREAD_STATE_RUN) { in vl15_poller()
182 p_vl->thread_state == OSM_THREAD_STATE_RUN) { in vl15_poller()
213 p_vl->thread_state = OSM_THREAD_STATE_NONE; in osm_vl15_construct()
230 p_vl->thread_state = OSM_THREAD_STATE_EXIT; in osm_vl15_destroy()
H A Dosm_sm.c102 while (p_sm->thread_state == OSM_THREAD_STATE_RUN) { in sm_sweeper()
159 p_sm->thread_state = OSM_THREAD_STATE_NONE; in osm_sm_construct()
182 if (p_sm->thread_state != OSM_THREAD_STATE_NONE) in osm_sm_shutdown()
185 p_sm->thread_state = OSM_THREAD_STATE_EXIT; in osm_sm_shutdown()
394 p_sm->thread_state = OSM_THREAD_STATE_RUN; in osm_sm_init()
H A Dosm_congestion_control.c558 if (p_cc->thread_state == OSM_THREAD_STATE_NONE) in cc_poller()
559 p_cc->thread_state = OSM_THREAD_STATE_RUN; in cc_poller()
561 while (p_cc->thread_state == OSM_THREAD_STATE_RUN) { in cc_poller()
622 p_cc->thread_state = OSM_THREAD_STATE_NONE; in osm_congestion_control_init()
784 p_cc->thread_state = OSM_THREAD_STATE_EXIT; in osm_congestion_control_destroy()
/freebsd-13.1/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersSave.S18 # extern int __unw_getcontext(unw_context_t* thread_state)
23 # + thread_state pointer +
59 # extern int __unw_getcontext(unw_context_t* thread_state)
62 # thread_state pointer is in rdi
121 # extern int __unw_getcontext(unw_context_t* thread_state)
124 # thread_state pointer is in a0 ($4)
230 # extern int __unw_getcontext(unw_context_t* thread_state)
233 # thread_state pointer is in a0 ($4)
320 # extern int __unw_getcontext(unw_context_t* thread_state)
765 @ extern int __unw_getcontext(unw_context_t* thread_state)
[all …]
H A DUnwindRegistersRestore.S23 # + thread_state pointer +
63 # On entry, thread_state pointer is in rcx; move it into rdi
766 # thread_state pointer is in r3
814 # thread_state pointer is in r2
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTrace.cpp206 for (const TraceThreadState &thread_state : in RefreshLiveProcessState() local
208 for (const TraceBinaryData &item : thread_state.binaryData) in RefreshLiveProcessState()
209 m_live_thread_data[thread_state.tid][item.kind] = item.size; in RefreshLiveProcessState()
H A DThread.cpp958 StateType thread_state = GetResumeState(); in ShouldReportStop() local
963 if (thread_state == eStateSuspended || thread_state == eStateInvalid) { in ShouldReportStop()
1019 StateType thread_state = GetResumeState(); in ShouldReportRun() local
1021 if (thread_state == eStateSuspended || thread_state == eStateInvalid) { in ShouldReportRun()
/freebsd-13.1/contrib/llvm-project/openmp/runtime/src/
H A Dompt-general.cpp626 int thread_state = __ompt_get_state_internal(wait_id); local
628 if (thread_state == ompt_state_undefined) {
629 thread_state = ompt_state_work_serial;
632 return thread_state;
H A Dkmp_wait_release.h207 stats_state_e thread_state = KMP_GET_THREAD_STATE(); in __kmp_wait_template() local
486 KMP_SET_THREAD_STATE(thread_state); in __kmp_wait_template()
/freebsd-13.1/contrib/ofed/opensm/include/opensm/
H A Dosm_congestion_control.h95 osm_thread_state_t thread_state; member
H A Dosm_vl15intf.h118 osm_thread_state_t thread_state; member
H A Dosm_sm.h106 osm_thread_state_t thread_state; member
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp200 for (const TraceThreadState &thread_state : state->tracedThreads) { in DoRefreshLiveProcessState() local
202 *m_live_process->GetThreadList().FindThreadByID(thread_state.tid); in DoRefreshLiveProcessState()
/freebsd-13.1/contrib/netbsd-tests/lib/libpthread_dbg/
H A Dt_threads.c690 ATF_REQUIRE_EQ(info.thread_state, TD_STATE_RUNNING); in ATF_TC_BODY()