Lines Matching refs:ucontext_t
5 'ucontext_t'
43 +// functions to juggle the ucontext_t and user structures into minidump format.
48 +uintptr_t UContextReader::GetStackPointer(const ucontext_t* uc) {
53 +uintptr_t UContextReader::GetInstructionPointer(const ucontext_t* uc) {
58 +void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext_t *uc,
67 +uintptr_t UContextReader::GetStackPointer(const ucontext_t* uc) {
72 +uintptr_t UContextReader::GetInstructionPointer(const ucontext_t* uc) {
77 +void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext_t *uc,
86 +uintptr_t UContextReader::GetStackPointer(const ucontext_t* uc) {
91 +uintptr_t UContextReader::GetInstructionPointer(const ucontext_t* uc) {
96 +void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext_t *uc) {
105 +uintptr_t UContextReader::GetStackPointer(const ucontext_t* uc) {
110 +uintptr_t UContextReader::GetInstructionPointer(const ucontext_t* uc) {
115 +void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext_t *uc,
124 +uintptr_t UContextReader::GetStackPointer(const ucontext_t* uc) {
129 +uintptr_t UContextReader::GetInstructionPointer(const ucontext_t* uc) {
134 +void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext_t *uc) {
147 +// Wraps platform-dependent implementations of accessors to ucontext_t structs.
150 + static uintptr_t GetStackPointer(const ucontext_t* uc);
153 + static uintptr_t GetInstructionPointer(const ucontext_t* uc);
156 + // Juggle a arch-specific ucontext_t into a minidump format
161 + static void FillCPUContext(RawContextCPU *out, const ucontext_t *uc,
165 + static void FillCPUContext(RawContextCPU *out, const ucontext_t *uc,
169 + static void FillCPUContext(RawContextCPU *out, const ucontext_t *uc);
182 + memcpy(&g_crash_context_.context, uc, sizeof(ucontext_t));
185 + ucontext_t* uc_ptr = (ucontext_t*)uc;
194 + // In case of MIPS Linux FP state is already part of ucontext_t
197 + ucontext_t* uc_ptr = (ucontext_t*)uc;
206 + ucontext_t context;
219 + ucontext_t context;
224 + // In case of MIPS Linux FP state is already part of ucontext_t so
238 + const ucontext_t* const ucontext_;
251 + const ucontext_t* const ucontext_; // also from the signal handler