Home
last modified time | relevance | path

Searched defs:sigcontext (Results 1 – 11 of 11) sorted by relevance

/external/kernel-headers/original/uapi/asm-mips/asm/
Dsigcontext.h33 struct sigcontext { struct
34 unsigned int sc_regmask; /* Unused */
35 unsigned int sc_status; /* Unused */
36 unsigned long long sc_pc;
60 * Keep this struct definition in sync with the sigcontext fragment argument
69 struct sigcontext { struct
70 __u64 sc_regs[32];
71 __u64 sc_fpregs[32];
72 __u64 sc_mdhi;
73 __u64 sc_hi1;
[all …]
/external/kernel-headers/original/uapi/asm-arm/asm/
Dsigcontext.h9 struct sigcontext { struct
10 unsigned long trap_no;
11 unsigned long error_code;
12 unsigned long oldmask;
13 unsigned long arm_r0;
14 unsigned long arm_r1;
15 unsigned long arm_r2;
16 unsigned long arm_r3;
17 unsigned long arm_r4;
18 unsigned long arm_r5;
[all …]
/external/libchrome/sandbox/linux/system_headers/
Darm_linux_ucontext.h16 struct sigcontext { struct
17 unsigned long trap_no;
18 unsigned long error_code;
19 unsigned long oldmask;
20 unsigned long arm_r0;
21 unsigned long arm_r1;
22 unsigned long arm_r2;
23 unsigned long arm_r3;
24 unsigned long arm_r4;
25 unsigned long arm_r5;
[all …]
/external/kernel-headers/original/uapi/asm-x86/asm/
Dsigcontext.h281 # define sigcontext sigcontext_32 macro
283 # define sigcontext sigcontext_64 macro
299 struct sigcontext { struct
300 __u16 gs, __gsh;
324 struct sigcontext { argument
325 __u64 r8;
326 __u64 r9;
327 __u64 r10;
328 __u64 r11;
329 __u64 r12;
[all …]
/external/kernel-headers/original/uapi/asm-arm64/asm/
Dsigcontext.h25 struct sigcontext { struct
26 __u64 fault_address;
28 __u64 regs[31];
29 __u64 sp;
30 __u64 pc;
31 __u64 pstate;
33 __u8 __reserved[4096] __attribute__((__aligned__(16)));
/external/valgrind/helgrind/tests/
Dsafe-pthread.h15 static void sigill_handler( int signum, siginfo_t *siginfo, void *sigcontext ) { in sigill_handler()
27 static void segv_handler( int signum, siginfo_t *siginfo, void *sigcontext ) { in segv_handler()
Dsafe-semaphore.h13 static void abrt_handler( int signum, siginfo_t *siginfo, void *sigcontext ) { in abrt_handler()
/external/valgrind/none/tests/x86-linux/
DMakefile.am21 sigcontext program
/external/libunwind/tests/
Dia64-test-setjmp.c62 sighandler (int signal, void *siginfo, void *sigcontext) in sighandler()
/external/valgrind/coregrind/m_sigframe/
Dsigframe-ppc32-linux.c106 struct vki_sigcontext sigcontext; member
/external/python/cpython2/Lib/lib2to3/tests/data/
Dinfinite_recursion.py54 class sigcontext(Structure): class