Lines Matching refs:ucontext

4 Subject: [PATCH] Replace remaining references to 'struct ucontext' with
42 -// functions to juggle the ucontext and user structures into minidump format.
47 -uintptr_t UContextReader::GetStackPointer(const struct ucontext* uc) {
52 -uintptr_t UContextReader::GetInstructionPointer(const struct ucontext* uc) {
57 -void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc,
62 @@ -88,15 +88,15 @@ void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc,
66 -uintptr_t UContextReader::GetStackPointer(const struct ucontext* uc) {
71 -uintptr_t UContextReader::GetInstructionPointer(const struct ucontext* uc) {
76 -void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc,
81 @@ -145,15 +145,15 @@ void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc,
85 -uintptr_t UContextReader::GetStackPointer(const struct ucontext* uc) {
90 -uintptr_t UContextReader::GetInstructionPointer(const struct ucontext* uc) {
95 -void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc) {
100 @@ -184,15 +184,15 @@ void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc) {
104 -uintptr_t UContextReader::GetStackPointer(const struct ucontext* uc) {
109 -uintptr_t UContextReader::GetInstructionPointer(const struct ucontext* uc) {
114 -void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc,
119 @@ -210,15 +210,15 @@ void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc,
123 -uintptr_t UContextReader::GetStackPointer(const struct ucontext* uc) {
128 -uintptr_t UContextReader::GetInstructionPointer(const struct ucontext* uc) {
133 -void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc) {
146 -// Wraps platform-dependent implementations of accessors to ucontext structs.
149 - static uintptr_t GetStackPointer(const struct ucontext* uc);
152 - static uintptr_t GetInstructionPointer(const struct ucontext* uc);
155 - // Juggle a arch-specific ucontext into a minidump format
160 - static void FillCPUContext(RawContextCPU *out, const ucontext *uc,
164 - static void FillCPUContext(RawContextCPU *out, const ucontext *uc,
168 - static void FillCPUContext(RawContextCPU *out, const ucontext *uc);
181 - memcpy(&g_crash_context_.context, uc, sizeof(struct ucontext));
184 - struct ucontext* uc_ptr = (struct ucontext*)uc;
193 - // In case of MIPS Linux FP state is already part of struct ucontext
196 - struct ucontext* uc_ptr = (struct ucontext*)uc;
205 - struct ucontext context;
218 - struct ucontext context;
223 - // ucontext so 'float_state' is not required.
237 - const struct ucontext* const ucontext_;
250 - const struct ucontext* const ucontext_; // also from the signal handler