Lines Matching refs:ucontext
68 typedef struct ucontext { struct
70 struct ucontext* uc_link; argument
80 typedef struct ucontext { argument
82 struct ucontext *uc_link; argument
111 typedef struct ucontext { struct
113 struct ucontext* uc_link; argument
129 typedef struct ucontext { argument
131 struct ucontext* uc_link; argument
146 typedef struct ucontext { struct
148 struct ucontext *uc_link; argument
443 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); in HandleProfilerSignal() local
445 mcontext_t& mcontext = ucontext->uc_mcontext; in HandleProfilerSignal()
482 state.pc = reinterpret_cast<Address>(ucontext->uc_mcontext.regs->nip); in HandleProfilerSignal()
483 state.sp = reinterpret_cast<Address>(ucontext->uc_mcontext.regs->gpr[PT_R1]); in HandleProfilerSignal()
484 state.fp = reinterpret_cast<Address>(ucontext->uc_mcontext.regs->gpr[PT_R31]); in HandleProfilerSignal()
534 state.pc = reinterpret_cast<Address>(ucontext->sc_eip); in HandleProfilerSignal()
535 state.sp = reinterpret_cast<Address>(ucontext->sc_esp); in HandleProfilerSignal()
536 state.fp = reinterpret_cast<Address>(ucontext->sc_ebp); in HandleProfilerSignal()
538 state.pc = reinterpret_cast<Address>(ucontext->sc_rip); in HandleProfilerSignal()
539 state.sp = reinterpret_cast<Address>(ucontext->sc_rsp); in HandleProfilerSignal()
540 state.fp = reinterpret_cast<Address>(ucontext->sc_rbp); in HandleProfilerSignal()