HomeSort by relevance Sort by last modified time
    Searched full:ucontext (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.11-4.8/sysroot/usr/include/asm-generic/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /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/compiler-rt/lib/asan/
asan_linux.cc 43 #include <ucontext.h>
46 #include <sys/ucontext.h>
153 ucontext_t *ucontext = (ucontext_t*)context; local
154 *pc = ucontext->uc_mcontext.arm_pc;
155 *bp = ucontext->uc_mcontext.arm_fp;
156 *sp = ucontext->uc_mcontext.arm_sp;
158 ucontext_t *ucontext = (ucontext_t*)context;
159 *pc = ucontext->uc_mcontext.pc;
160 *bp = ucontext->uc_mcontext.regs[29];
161 *sp = ucontext->uc_mcontext.sp
    [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>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.11-4.8/sysroot/usr/include/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>
40 bool UnwindCurrent::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) {
41 if (!ucontext) {
49 GetUnwContextFromUcontext(ucontext);
54 void UnwindCurrent::GetUnwContextFromUcontext(const ucontext_t* ucontext) {
58 unw_context->regs[0] = ucontext->uc_mcontext.arm_r0;
59 unw_context->regs[1] = ucontext->uc_mcontext.arm_r1;
60 unw_context->regs[2] = ucontext->uc_mcontext.arm_r2;
61 unw_context->regs[3] = ucontext->uc_mcontext.arm_r3;
62 unw_context->regs[4] = ucontext->uc_mcontext.arm_r4
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/m4/
pc_from_ucontext.m4 2 # ucontext. Every system has its own way of doing that. We try all the
6 # OpenBSD doesn't have ucontext.h, but we can get PC from ucontext_t
10 # cannot find a way to obtain PC from ucontext.
13 [AC_CHECK_HEADERS(ucontext.h)
14 # Redhat 7 has <sys/ucontext.h>, but it barfs if we #include it directly
15 # (this was fixed in later redhats). <ucontext.h> works fine, so use that.
17 AC_DEFINE(HAVE_SYS_UCONTEXT_H, 0, [<sys/ucontext.h> is broken on redhat 7])
20 AC_CHECK_HEADERS(sys/ucontext.h) # ucontext on OS X 10.6 (at least)
22 AC_CHECK_HEADERS(cygwin/signal.h) # ucontext on cywgi
    [all...]
  /external/chromium_org/sandbox/linux/services/
android_arm_ucontext.h 15 typedef struct ucontext { struct
17 struct ucontext *uc_link;
29 #include <sys/ucontext.h>
android_arm64_ucontext.h 16 struct ucontext* uc_link;
26 #include <sys/ucontext.h>
android_i386_ucontext.h 10 // This is mostly copied from breakpad (common/android/include/sys/ucontext.h),
66 typedef struct ucontext { struct
68 struct ucontext* uc_link;
76 #include <sys/ucontext.h>
android_mips_ucontext.h 8 // This is mostly copied from breakpad (common/android/include/sys/ucontext.h),
38 typedef struct ucontext { struct
40 struct ucontext* uc_link;
48 #include <sys/ucontext.h>
  /art/test/004-SignalTest/
signaltest.cc 24 #include <sys/ucontext.h>
31 #define ucontext __darwin_ucontext macro
57 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
61 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
65 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
  /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/compiler-rt/android/
README.LLVM 4 This directory contains Android header ucontext.h missing from the NDK.
  /bionic/libc/kernel/uapi/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;
  /development/ndk/platforms/android-L/include/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;

Completed in 820 milliseconds

1 2 3 4 5 6 7 8 9