/external/kernel-headers/original/uapi/asm-mips/asm/ |
ucontext.h | 1 #include <asm-generic/ucontext.h>
|
/external/kernel-headers/original/uapi/asm-generic/ |
ucontext.h | 4 struct ucontext { struct 6 struct ucontext *uc_link;
|
/ndk/tests/build/ucontext/jni/ |
Android.mk | 4 LOCAL_MODULE := ucontext 5 LOCAL_SRC_FILES := ucontext.c
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/ |
ucontext.h | 4 struct ucontext { struct 6 struct ucontext *uc_link;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/ |
ucontext.h | 4 struct ucontext { struct 6 struct ucontext *uc_link;
|
/system/extras/simpleperf/ |
dwarf_unwind.cpp | 19 #include <ucontext.h> 35 ucontext_t ucontext; local 36 memset(&ucontext, 0, sizeof(ucontext)); 38 SetUContextReg(ucontext.uc_mcontext.gregs[REG_GS], PERF_REG_X86_GS); 39 SetUContextReg(ucontext.uc_mcontext.gregs[REG_FS], PERF_REG_X86_FS); 40 SetUContextReg(ucontext.uc_mcontext.gregs[REG_ES], PERF_REG_X86_ES); 41 SetUContextReg(ucontext.uc_mcontext.gregs[REG_DS], PERF_REG_X86_DS); 42 SetUContextReg(ucontext.uc_mcontext.gregs[REG_EAX], PERF_REG_X86_AX); 43 SetUContextReg(ucontext.uc_mcontext.gregs[REG_EBX], PERF_REG_X86_BX) 129 ucontext_t ucontext = BuildUContextFromRegs(regs); local [all...] |
/external/libunwind/src/ppc32/ |
Gstep.c | 34 our use at the user level in order to locate the ucontext record, which 130 handler was established. If it was not set, the ucontext 135 unw_word_t ucontext = c->dwarf.cfa + __SIGNAL_FRAMESIZE; local 140 c->sigcontext_addr = ucontext; 142 sp_loc = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R1, 0); 143 ip_loc = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_LINK, 0); 163 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R0, 0); 165 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R1, 0); 167 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R2, 0); 169 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R3, 0) [all...] |
/external/kernel-headers/original/uapi/asm-x86/asm/ |
ucontext.h | 6 * by the fpstate pointer in the ucontext's 10 #include <asm-generic/ucontext.h>
|
/external/strace/linux/tile/ |
arch_sigreturn.c | 4 /* offset of ucontext in the kernel's sigframe structure */ 7 offsetof(struct ucontext, uc_sigmask);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/ |
ucontext.h | 6 * by the fpstate pointer in the ucontext's 10 #include <asm-generic/ucontext.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/ |
ucontext.h | 6 * by the fpstate pointer in the ucontext's 10 #include <asm-generic/ucontext.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/ |
ucontext.h | 6 * by the fpstate pointer in the ucontext's 10 #include <asm-generic/ucontext.h>
|
/external/libunwind/src/ppc64/ |
Gstep.c | 34 our use at the user level in order to locate the ucontext record, which 131 handler was established. If it was not set, the ucontext 136 unw_word_t ucontext = c->dwarf.cfa + __SIGNAL_FRAMESIZE; local 141 c->sigcontext_addr = ucontext; 143 sp_loc = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R1, 0); 144 ip_loc = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_NIP, 0); 164 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R0, 0); 166 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R1, 0); 168 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R2, 0); 170 DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R3, 0) [all...] |
/system/core/libbacktrace/ |
UnwindCurrent.cpp | 18 #include <ucontext.h> 43 void UnwindCurrent::GetUnwContextFromUcontext(const ucontext_t* ucontext) { 47 unw_context->regs[0] = ucontext->uc_mcontext.arm_r0; 48 unw_context->regs[1] = ucontext->uc_mcontext.arm_r1; 49 unw_context->regs[2] = ucontext->uc_mcontext.arm_r2; 50 unw_context->regs[3] = ucontext->uc_mcontext.arm_r3; 51 unw_context->regs[4] = ucontext->uc_mcontext.arm_r4; 52 unw_context->regs[5] = ucontext->uc_mcontext.arm_r5; 53 unw_context->regs[6] = ucontext->uc_mcontext.arm_r6; 54 unw_context->regs[7] = ucontext->uc_mcontext.arm_r7 [all...] |
backtrace_offline_test.cpp | 51 ucontext_t ucontext; local 52 memset(&ucontext, 0, sizeof(ucontext)); 54 ucontext.uc_mcontext.arm_r0 = unw_context.regs[0]; 55 ucontext.uc_mcontext.arm_r1 = unw_context.regs[1]; 56 ucontext.uc_mcontext.arm_r2 = unw_context.regs[2]; 57 ucontext.uc_mcontext.arm_r3 = unw_context.regs[3]; 58 ucontext.uc_mcontext.arm_r4 = unw_context.regs[4]; 59 ucontext.uc_mcontext.arm_r5 = unw_context.regs[5]; 60 ucontext.uc_mcontext.arm_r6 = unw_context.regs[6] 113 ucontext_t ucontext = GetUContextFromUnwContext(arg.unw_context); local [all...] |
/external/valgrind/memcheck/tests/solaris/ |
thr_daemon_exit_standalone.c | 8 #include <sys/ucontext.h> 145 ucontext_t ucontext; local 146 bzero(&ucontext, sizeof(ucontext)); 147 ucontext.uc_flags = UC_CPU; 152 : [STACK_SEG] "=r" (ucontext.uc_mcontext.gregs[SS]) 155 ucontext.uc_mcontext.gregs[EIP] = (greg_t) thread_func; 156 ucontext.uc_mcontext.gregs[UESP] = (greg_t) stack; 157 ucontext.uc_mcontext.gregs[EBP] = (greg_t) stack; 159 ucontext.uc_mcontext.gregs[REG_SS] = UDS_SEL [all...] |
/external/google-breakpad/src/client/linux/dump_writer_common/ |
ucontext_reader.h | 33 #include <sys/ucontext.h> 42 // Wraps platform-dependent implementations of accessors to ucontext structs. 44 static uintptr_t GetStackPointer(const struct ucontext* uc); 46 static uintptr_t GetInstructionPointer(const struct ucontext* uc); 48 // Juggle a arch-specific ucontext into a minidump format 52 static void FillCPUContext(RawContextCPU *out, const ucontext *uc, 55 static void FillCPUContext(RawContextCPU *out, const ucontext *uc, 58 static void FillCPUContext(RawContextCPU *out, const ucontext *uc);
|
/external/libchrome/sandbox/linux/system_headers/ |
arm64_linux_ucontext.h | 17 struct ucontext* uc_link; 27 #include <sys/ucontext.h>
|
mips_linux_ucontext.h | 10 // This is mostly copied from breakpad (common/android/include/sys/ucontext.h), 40 typedef struct ucontext { struct 42 struct ucontext* uc_link; 50 #include <sys/ucontext.h>
|
/external/libunwind/src/x86_64/ |
Gos-freebsd.c | 29 #include <sys/ucontext.h> 94 unw_word_t ucontext; local 99 ucontext = c->dwarf.cfa + offsetof(struct sigframe, sf_uc); 103 struct dwarf_loc rsp_loc = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RSP, 0); 111 c->dwarf.loc[RAX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RAX, 0); 112 c->dwarf.loc[RDX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RDX, 0); 113 c->dwarf.loc[RCX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RCX, 0); 114 c->dwarf.loc[RBX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RBX, 0); 115 c->dwarf.loc[RSI] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RSI, 0); 116 c->dwarf.loc[RDI] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RDI, 0) [all...] |
/external/strace/linux/arm/ |
arch_sigreturn.c | 12 offsetof(struct ucontext, uc_sigmask)) :
|
/external/valgrind/none/tests/solaris/ |
context_null.c | 5 #include <ucontext.h>
|
/prebuilts/go/darwin-x86/src/runtime/ |
defs3_linux.go | 19 #include <asm/ucontext.h> 40 // PPC64 uses sigcontext in place of mcontext in ucontext. 41 // see http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/powerpc/include/uapi/asm/ucontext.h 43 type Ucontext C.struct_ucontext
|
/prebuilts/go/linux-x86/src/runtime/ |
defs3_linux.go | 19 #include <asm/ucontext.h> 40 // PPC64 uses sigcontext in place of mcontext in ucontext. 41 // see http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/powerpc/include/uapi/asm/ucontext.h 43 type Ucontext C.struct_ucontext
|
/art/test/004-SignalTest/ |
signaltest.cc | 21 #include <sys/ucontext.h> 31 #define ucontext __darwin_ucontext macro 58 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); 62 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); 66 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); 69 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context) [all...] |