HomeSort by relevance Sort by last modified time
    Searched defs:ucontext (Results 1 - 19 of 19) sorted by null

  /bionic/libc/kernel/common/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;
  /external/kernel-headers/original/asm-generic/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /bionic/libc/kernel/arch-arm/asm/
ucontext.h 22 struct ucontext { struct
25 struct ucontext *uc_link;
  /external/kernel-headers/original/asm-arm/
ucontext.h 8 * ucontext now has room for all registers which need to be saved and
16 struct ucontext { struct
18 struct ucontext *uc_link;
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-ppc32-linux.c 117 struct vki_ucontext ucontext; member in struct:rt_sigframe
245 //:: /* ptr to ucontext */
251 //:: struct vki_ucontext uContext;
649 //.. frame->puContext = (Addr)&frame->uContext;
657 //.. synth_ucontext(tst->tid, siginfo, mask, &frame->uContext, &frame->fpstate);
713 struct vki_ucontext *ucp = &frame->ucontext;
721 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal frame ucontext",
729 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal frame ucontext",
872 //.. restore_sigcontext(tst, &frame->uContext.uc_mcontext, &frame->fpstate);
904 mc = &frame->ucontext.uc_mcontext
    [all...]
  /system/core/libcorkscrew/arch-mips/
backtrace-mips.c 50 typedef struct ucontext { struct
  /external/compiler-rt/lib/asan/
asan_mac.cc 33 #include <sys/ucontext.h>
43 ucontext_t *ucontext = (ucontext_t*)context; local
45 *pc = ucontext->uc_mcontext->__ss.__rip;
46 *bp = ucontext->uc_mcontext->__ss.__rbp;
47 *sp = ucontext->uc_mcontext->__ss.__rsp;
49 *pc = ucontext->uc_mcontext->__ss.__eip;
50 *bp = ucontext->uc_mcontext->__ss.__ebp;
51 *sp = ucontext->uc_mcontext->__ss.__esp;
  /system/core/libcorkscrew/arch-arm/
backtrace-arm.c 70 typedef struct ucontext { struct
72 struct ucontext* uc_link;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
ucontext.h 135 typedef struct ucontext struct
138 struct ucontext *uc_link;
236 typedef struct ucontext struct
239 struct ucontext *uc_link;
248 #endif /* sys/ucontext.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
ucontext.h 135 typedef struct ucontext struct
138 struct ucontext *uc_link;
236 typedef struct ucontext struct
239 struct ucontext *uc_link;
248 #endif /* sys/ucontext.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
ucontext.h 135 typedef struct ucontext struct
138 struct ucontext *uc_link;
236 typedef struct ucontext struct
239 struct ucontext *uc_link;
248 #endif /* sys/ucontext.h */
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 45 #include <asm/ucontext.h>
46 typedef struct ucontext ucontext_t;
68 typedef struct ucontext { struct
70 struct ucontext* uc_link;
82 #include <ucontext.h>
  /external/v8/src/
platform-freebsd.cc 37 #include <sys/ucontext.h>
699 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
700 mcontext_t& mcontext = ucontext->uc_mcontext;
platform-solaris.cc 38 #include <ucontext.h> // walkstack(), getcontext()
691 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
692 mcontext_t& mcontext = ucontext->uc_mcontext;
platform-linux.cc 950 typedef struct ucontext { struct in namespace:v8::internal
952 struct ucontext* uc_link;
983 typedef struct ucontext { struct in namespace:v8::internal
985 struct ucontext* uc_link;
1002 typedef struct ucontext { struct in namespace:v8::internal
1004 struct ucontext* uc_link;
1044 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
1045 mcontext_t& mcontext = ucontext->uc_mcontext;
    [all...]
platform-openbsd.cc 753 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
755 mcontext_t& mcontext = ucontext->uc_mcontext;
767 sample->pc = reinterpret_cast<Address>(ucontext->sc_eip);
768 sample->sp = reinterpret_cast<Address>(ucontext->sc_esp);
769 sample->fp = reinterpret_cast<Address>(ucontext->sc_ebp);
771 sample->pc = reinterpret_cast<Address>(ucontext->sc_rip);
772 sample->sp = reinterpret_cast<Address>(ucontext->sc_rsp);
773 sample->fp = reinterpret_cast<Address>(ucontext->sc_rbp);

Completed in 2003 milliseconds