Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterContextMach_arm.cpp28 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
38 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
43 return ::thread_get_state(tid, flavor, (thread_state_t)&dbg, &count); in DoReadDBG()
49 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)), in DoWriteGPR()
56 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
63 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<EXC *>(&exc)), in DoWriteEXC()
70 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<DBG *>(&dbg)), in DoWriteDBG()
DRegisterContextMach_x86_64.cpp27 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
39 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
45 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)), in DoWriteGPR()
52 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
59 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<EXC *>(&exc)), in DoWriteEXC()
DRegisterContextMach_i386.cpp26 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
31 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
36 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
42 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)), in DoWriteGPR()
49 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
56 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<EXC *>(&exc)), in DoWriteEXC()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachException.cpp34 int *flavor, const thread_state_t old_state,
35 mach_msg_type_number_t old_stateCnt, thread_state_t new_state,
42 mach_msg_type_number_t codeCnt, int *flavor, thread_state_t old_state,
43 mach_msg_type_number_t old_stateCnt, thread_state_t new_state,
60 int *flavor, const thread_state_t old_state, in catch_mach_exception_raise_state()
61 mach_msg_type_number_t old_stateCnt, thread_state_t new_state, in catch_mach_exception_raise_state()
77 thread_state_t old_state, mach_msg_type_number_t old_stateCnt, in catch_mach_exception_raise_state_identity()
78 thread_state_t new_state, mach_msg_type_number_t *new_stateCnt) { in catch_mach_exception_raise_state_identity()
/external/google-breakpad/src/third_party/mac_headers/mach/
Dthread_status.h83 typedef natural_t *thread_state_t; /* Variable-length array */ typedef
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/arm/
DDNBArchImpl.cpp176 (thread_state_t)&m_state.context.gpr, &count); in GetGPRState()
202 (thread_state_t)&m_state.context.vfp, &count); in GetVFPState()
263 (thread_state_t)&m_state.context.vfp, &count); in GetVFPState()
313 (thread_state_t)&m_state.context.exc, &count); in GetEXCState()
340 (thread_state_t)&m_state.dbg, &count); in GetDBGState()
345 (thread_state_t)&m_state.dbg, &count); in GetDBGState()
356 (thread_state_t)&m_state.context.gpr, ARM_THREAD_STATE_COUNT); in SetGPRState()
373 (thread_state_t)&m_state.context.vfp, count); in SetVFPState()
377 (thread_state_t)&m_state.context.vfp, count); in SetVFPState()
484 (thread_state_t)&m_state.context.exc, ARM_EXCEPTION_STATE_COUNT); in SetEXCState()
[all …]
/external/llvm-project/lldb/tools/darwin-threads/
Dexamine-threads.c203 kr = thread_get_state(thread, x86_THREAD_STATE, (thread_state_t)&gp_regs, in get_current_pc()
222 kr = thread_get_state(thread, ARM_THREAD_STATE, (thread_state_t)&gp_regs, in get_current_pc()
235 kr = thread_get_state(thread, ARM_THREAD_STATE64, (thread_state_t)&gp_regs, in get_current_pc()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/arm64/
DDNBArchImplARM64.cpp149 (thread_state_t)&m_state.context.gpr, &count); in GetGPRState()
217 (thread_state_t)&m_state.context.vfp, &count); in GetVFPState()
338 (thread_state_t)&m_state.context.exc, &count); in GetEXCState()
363 (thread_state_t)&m_state.dbg, &count); in GetDBGState()
373 (thread_state_t)&m_state.context.gpr, e_regSetGPRCount); in SetGPRState()
386 (thread_state_t)&m_state.context.vfp, e_regSetVFPCount); in SetVFPState()
399 (thread_state_t)&m_state.context.exc, e_regSetEXCCount); in SetEXCState()
412 (thread_state_t)&m_state.dbg, e_regSetDBGCount); in SetDBGState()
416 (thread_state_t)&m_state.dbg, e_regSetDBGCount); in SetDBGState()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_stoptheworld_mac.cpp150 err = thread_get_state(thread, MACHINE_THREAD_STATE, (thread_state_t)&regs, in GetRegistersAndSP()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/i386/
DDNBArchImplI386.cpp377 (thread_state_t)&m_state.context.gpr, &count)); in GetGPRState()
493 (thread_state_t)&m_state.context.fpu, in GetFPUState()
508 (thread_state_t)&m_state.context.fpu, in GetFPUState()
525 (thread_state_t)&m_state.context.exc, &count)); in GetEXCState()
540 (thread_state_t)&m_state.context.gpr, in SetGPRState()
563 (thread_state_t)&m_state.context.fpu, in SetFPUState()
573 (thread_state_t)&m_state.context.exc, in SetEXCState()
584 (thread_state_t)&m_state.context.dbg, &count)); in GetDBGState()
593 (thread_state_t)&m_state.context.dbg, in SetDBGState()
598 (thread_state_t)&m_state.context.dbg, e_regSetWordSizeDBG); in SetDBGState()
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.h154 bool GetThreadState(thread_act_t target_thread, thread_state_t state,
Dminidump_generator.cc894 thread_state_t state, in GetThreadState()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/x86_64/
DDNBArchImplX86_64.cpp189 (thread_state_t)&m_state.context.gpr, &count)); in GetGPRState()
414 (thread_state_t)&m_state.context.fpu, in GetFPUState()
433 (thread_state_t)&m_state.context.fpu, in GetFPUState()
450 (thread_state_t)&m_state.context.exc, &count)); in GetEXCState()
465 (thread_state_t)&m_state.context.gpr, in SetGPRState()
504 (thread_state_t)&m_state.context.fpu, count)); in SetFPUState()
519 (thread_state_t)&m_state.context.fpu, count)); in SetFPUState()
528 (thread_state_t)&m_state.context.exc, in SetEXCState()
539 (thread_state_t)&m_state.context.dbg, &count)); in GetDBGState()
548 (thread_state_t)&m_state.context.dbg, in SetDBGState()
[all …]
/external/llvm-project/lldb/tools/debugserver/source/
DRNBRemote.cpp6471 (thread_state_t)&gp_regs, &gp_count); in HandlePacket_qProcessInfo()
6487 (thread_state_t)&gp_regs, &gp_count); in HandlePacket_qProcessInfo()