Searched refs:thread_ (Results 1 – 8 of 8) sorted by relevance
| /kernel/object/ |
| A D | thread_dispatcher.cpp | 88 thread_forget(&thread_); in ~ThreadDispatcher() 121 DEBUG_ASSERT(lkthread == &thread_); in Initialize() 148 memcpy(thread_.name, name, len); in set_name() 194 thread_.user_tid = get_koid(); in Start() 195 thread_.user_pid = process_->get_koid(); in Start() 202 thread_resume(&thread_); in Start() 207 thread_suspend(&thread_); in Start() 250 thread_kill(&thread_); in Kill() 289 return thread_suspend(&thread_); in Suspend() 323 thread_resume(&thread_); in Resume() [all …]
|
| A D | exception.cpp | 56 : thread_(thread), in ExceptionPortIterator() 69 eport = thread_->process()->debugger_exception_port(); in Next() 73 eport = thread_->exception_port(); in Next() 77 eport = thread_->process()->exception_port(); in Next() 81 previous_job_ = thread_->process()->job(); in Next() 111 ThreadDispatcher* thread_; member in ExceptionPortIterator
|
| /kernel/object/include/object/ |
| A D | thread_dispatcher.h | 106 uint64_t runtime_ns() const { return thread_runtime(&thread_); } in runtime_ns() 171 : thread_(ThreadDispatcher::GetCurrent()), in AutoBlocked() 172 prev_reason(thread_->blocked_reason_) { in AutoBlocked() 174 thread_->blocked_reason_ = reason; in AutoBlocked() 177 thread_->blocked_reason_ = prev_reason; in ~AutoBlocked() 180 ThreadDispatcher* const thread_; 269 thread_t thread_ = {}; variable
|
| /kernel/arch/arm64/hypervisor/ |
| A D | vcpu.cpp | 211 : guest_(guest), vpid_(vpid), thread_(thread), running_(false) {} in Vcpu() 219 if (!hypervisor::check_pinned_cpu_invariant(vpid_, thread_)) in Resume() 243 status = thread_->signals & THREAD_SIGNAL_KILL ? ZX_ERR_CANCELED : ZX_OK; in Resume() 272 if (!hypervisor::check_pinned_cpu_invariant(vpid_, thread_)) { in ReadState() 286 if (!hypervisor::check_pinned_cpu_invariant(vpid_, thread_)) { in WriteState()
|
| /kernel/arch/x86/include/arch/ |
| A D | hypervisor.h | 101 const thread_t* thread_; variable
|
| /kernel/arch/arm64/include/arch/ |
| A D | hypervisor.h | 117 const thread_t* thread_; variable
|
| /kernel/arch/x86/hypervisor/ |
| A D | vcpu.cpp | 234 : prev_cpu_mask_(get_current_thread()->cpu_affinity), thread_(hypervisor::pin_thread(vpid)) {} in AutoPin() 237 thread_set_cpu_affinity(thread_, prev_cpu_mask_); in ~AutoPin() 690 : guest_(guest), vpid_(vpid), thread_(thread), running_(false), vmx_state_(/* zero-init */) {} in Vcpu() 751 if (!hypervisor::check_pinned_cpu_invariant(vpid_, thread_)) in Resume() 839 if (!hypervisor::check_pinned_cpu_invariant(vpid_, thread_)) in ReadState() 857 if (!hypervisor::check_pinned_cpu_invariant(vpid_, thread_)) in WriteState()
|
| A D | vcpu_priv.h | 246 thread_t* thread_; variable
|
Completed in 22 milliseconds