Lines Matching refs:tid
34 RegisterContextMach_i386::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) in DoReadGPR() argument
37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
41 RegisterContextMach_i386::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) in DoReadFPU() argument
44 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
48 RegisterContextMach_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) in DoReadEXC() argument
51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
55 RegisterContextMach_i386::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) in DoWriteGPR() argument
57 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount); in DoWriteGPR()
61 RegisterContextMach_i386::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) in DoWriteFPU() argument
63 return ::thread_set_state(tid, flavor, (thread_state_t)&fpu, FPUWordCount); in DoWriteFPU()
67 RegisterContextMach_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) in DoWriteEXC() argument
69 return ::thread_set_state(tid, flavor, (thread_state_t)&exc, EXCWordCount); in DoWriteEXC()