Home
last modified time | relevance | path

Searched refs:ucontext_t (Results 1 – 25 of 77) sorted by relevance

1234

/OK3568_Linux_fs/buildroot/package/google-breakpad/
H A D0002-Replace-remaining-references-to-struct-ucontext-with.patch5 '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) {
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Ducontext.h34 extern int getcontext (ucontext_t *__ucp) __THROWNL;
37 extern int setcontext (const ucontext_t *__ucp) __THROWNL;
41 extern int swapcontext (ucontext_t *__restrict __oucp,
42 const ucontext_t *__restrict __ucp)
51 extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Ducontext.h34 extern int getcontext (ucontext_t *__ucp) __THROWNL;
37 extern int setcontext (const ucontext_t *__ucp) __THROWNL;
41 extern int swapcontext (ucontext_t *__restrict __oucp,
42 const ucontext_t *__restrict __ucp)
51 extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/m4/m4/
H A D0001-sigsegv-Fix-build-on-ppc-musl.patch9 … 223 | # define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcon…
22 # define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.gp_regs[1]
26 -# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.regs->gpr[1]
28 +# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_regs->gregs[1]
30 -# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.uc_regs->gregs[1]
31 +# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.uc_regs->gregs[1]
/OK3568_Linux_fs/kernel/tools/testing/selftests/x86/
H A Dsyscall_arg_fault.c50 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigsegv_or_sigbus()
75 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigtrap()
92 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigill()
H A Dsysret_rip.c71 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigsegv_for_sigreturn_test()
87 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigusr1()
115 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigsegv_for_fallthrough()
H A Dsigreturn.c307 static unsigned short *ssptr(ucontext_t *ctx) in ssptr()
313 static unsigned short *csptr(ucontext_t *ctx) in csptr()
323 static greg_t *ssptr(ucontext_t *ctx) in ssptr()
328 static greg_t *csptr(ucontext_t *ctx) in csptr()
394 static void validate_signal_ss(int sig, ucontext_t *ctx) in validate_signal_ss()
440 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigusr1()
480 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigtrap()
525 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigusr2()
H A Dsingle_step_syscall.c74 ucontext_t *ctx = (ucontext_t*)ctx_void; in sigtrap()
101 ucontext_t *ctx = ctx_void; in print_and_longjmp()
H A Dmov_ss_trap.c119 ucontext_t *ctx = ctx_void; in sigtrap()
128 ucontext_t *ctx = ctx_void; in handle_and_return()
136 ucontext_t *ctx = ctx_void; in handle_and_longjmp()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/qemu/qemu/
H A D0001-ppc-Include-asm-ptrace.h-for-pt_regs-struct-definiti.patch40 -static inline uintptr_t host_signal_pc(ucontext_t *uc)
45 -static inline void host_signal_set_pc(ucontext_t *uc, uintptr_t pc)
50 -static inline bool host_signal_write(siginfo_t *info, ucontext_t *uc)
76 +static inline uintptr_t host_signal_pc(ucontext_t *uc)
81 +static inline void host_signal_set_pc(ucontext_t *uc, uintptr_t pc)
86 +static inline bool host_signal_write(siginfo_t *info, ucontext_t *uc)
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/signal/
H A Dsigfuz.c62 static ucontext_t *tmp_uc;
91 ucontext_t *ucp = uc; in trap_signal_handler()
102 memset(ucp->uc_link, rand(), sizeof(ucontext_t)); in trap_signal_handler()
104 memcpy(ucp->uc_link, uc, sizeof(ucontext_t)); in trap_signal_handler()
110 tmp_uc = malloc(sizeof(ucontext_t)); in trap_signal_handler()
113 madvise(ucp->uc_link, sizeof(ucontext_t), MADV_DONTNEED); in trap_signal_handler()
205 tmp_uc = malloc(sizeof(ucontext_t)); in sigfuz_test()
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/tm/
H A Dtm-signal-context-force-tm.c45 ucontext_t init_context;
52 ucontext_t *ucp = uc; in usr_signal_handler()
60 ucp->uc_link = mmap(NULL, sizeof(ucontext_t), in usr_signal_handler()
69 ret = madvise(ucp->uc_link, sizeof(ucontext_t), MADV_DONTNEED); in usr_signal_handler()
H A Dtm-signal-sigreturn-nt.c22 ucontext_t *ucp = (ucontext_t *) uc; in trap_signal_handler()
H A Dtm-signal-context-chk-fpu.c50 ucontext_t *ucp = uc; in signal_usr1()
51 ucontext_t *tm_ucp = ucp->uc_link; in signal_usr1()
H A Dtm-signal-context-chk-gpr.c52 ucontext_t *ucp = uc; in signal_usr1()
53 ucontext_t *tm_ucp = ucp->uc_link; in signal_usr1()
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/grep/grep/
H A D0001-mcontext-is-not-a-standard-layout-so-glibc-and-musl-.patch20 # define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.gp_regs[1]
24 -# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.regs->gpr[1]
26 +# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_regs->gregs[1]
28 # define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.uc_regs->gregs[1]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/
H A Ducontext.h67 typedef struct ucontext_t struct
70 struct ucontext_t *uc_link; argument
74 } ucontext_t; argument
/OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/signal/
H A Dtest_signals.h76 ucontext_t saved_uc;
79 ucontext_t *live_uc;
96 int (*run)(struct tdescr *td, siginfo_t *si, ucontext_t *uc);
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/hddtemp/hddtemp/
H A D0001-backtrace-Replace-struct-ucontext-with-ucontext_t.patch4 Subject: [PATCH] backtrace: Replace struct ucontext with ucontext_t
22 + static ucontext_t *puc;
31 + puc = (ucontext_t *)extra;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/gperftools/gperftools/
H A Dppc-musl.patch20 [ucontext_t u; return u.$pc_field == 0;],
26 typedef ucontext ucontext_t;
38 ucontext_t uc;
56 ucontext_t uc;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/
H A Ducontext.h132 typedef struct ucontext_t struct
135 struct ucontext_t *uc_link; argument
140 } ucontext_t; argument
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/security/
H A Dflush_utils.c41 ucontext_t *ctx = (ucontext_t *)unused; in sigill_handler()
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/mm/
H A Dsegv_errors.c27 ucontext_t *ctxt = (ucontext_t *)ctxt_v; in segv_handler()
/OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/signal/testcases/
H A Dtestcases.h75 ucontext_t uc;
79 bool validate_reserved(ucontext_t *uc, size_t resv_sz, char **err);
/OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/mte/
H A Dmte_common_util.c35 ((ucontext_t *)uc)->uc_mcontext.pc, addr, si->si_code); in mte_default_handler()
53 ((ucontext_t *)uc)->uc_mcontext.pc += 4; in mte_default_handler()
64 ((ucontext_t *)uc)->uc_mcontext.pc, addr, si->si_code); in mte_default_handler()
73 ((ucontext_t *)uc)->uc_mcontext.pc += 4; in mte_default_handler()

1234