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

1 2 3 4 5

  /bionic/libc/include/
ucontext.h 4 * @file ucontext.h
5 * @brief Historical alternative to `<sys/ucontext.h>`.
7 * New code should use `<sys/ucontext.h>` directly.
10 #include <sys/ucontext.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
17-1-buildonly.c 5 #include <ucontext.h>
18-1-buildonly.c 5 #include <ucontext.h>
  /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);
  /bionic/libc/kernel/uapi/asm-generic/
ucontext.h 21 struct ucontext { struct
23 struct ucontext * uc_link;
  /external/kernel-headers/original/uapi/asm-generic/
ucontext.h 5 struct ucontext { struct
7 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...]
unwind_i.h 36 #include <sys/ucontext.h>
  /bionic/libc/kernel/uapi/asm-arm64/asm/
ucontext.h 22 struct ucontext { struct
24 struct ucontext * uc_link;
  /external/google-breakpad/src/common/android/include/
ucontext.h 36 #include <ucontext.h>
39 #include <sys/ucontext.h>
  /external/kernel-headers/original/uapi/asm-arm64/asm/
ucontext.h 22 struct ucontext { struct
24 struct ucontext *uc_link;
  /bionic/libc/kernel/uapi/asm-x86/asm/
ucontext.h 26 #include <asm-generic/ucontext.h>
  /external/kernel-headers/original/uapi/asm-x86/asm/
ucontext.h 7 * layout pointed by the fpstate pointer in the ucontext's sigcontext
54 #include <asm-generic/ucontext.h>
  /bionic/libc/kernel/uapi/asm-mips/asm/
ucontext.h 32 struct ucontext { struct
34 struct ucontext * uc_link;
  /external/kernel-headers/original/uapi/asm-mips/asm/
ucontext.h 12 * ucontext and struct sigframe, with each extended context structure beginning
46 * struct ucontext - user context structure
54 struct ucontext { struct
57 struct ucontext *uc_link;
62 /* Extended context structures may follow ucontext */
  /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...]
  /external/google-breakpad/src/client/mac/handler/
ucontext_compat.h 33 #include <sys/ucontext.h>
38 // <sys/ucontext.h> doesn't include the below file.
  /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...]
  /bionic/libc/include/sys/
procfs.h 33 #include <sys/ucontext.h>
  /external/google-breakpad/src/client/solaris/handler/
minidump_generator.h 35 #include <ucontext.h>
  /art/runtime/arch/mips/
fault_handler_mips.cc 17 #include <sys/ucontext.h>
43 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context);
80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
115 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context);
  /art/runtime/arch/mips64/
fault_handler_mips64.cc 19 #include <sys/ucontext.h>
44 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context);
82 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
117 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context);
  /art/test/004-SignalTest/
signaltest.cc 22 #include <sys/ucontext.h>
32 #define ucontext __darwin_ucontext macro
80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
84 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
88 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
91 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context)
    [all...]
  /art/runtime/arch/arm64/
fault_handler_arm64.cc 19 #include <sys/ucontext.h>
44 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context);
80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
109 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context);
155 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context);
  /art/runtime/
native_stack_dump.h 38 void* ucontext = nullptr,

Completed in 504 milliseconds

1 2 3 4 5