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

1 2 3

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ucontext.h 32 extern int getcontext (ucontext_t *__ucp) __THROW;
35 extern int setcontext (__const ucontext_t *__ucp) __THROW;
39 extern int swapcontext (ucontext_t *__restrict __oucp,
40 __const ucontext_t *__restrict __ucp) __THROW;
48 extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
ucontext.h 32 extern int getcontext (ucontext_t *__ucp) __THROW;
35 extern int setcontext (__const ucontext_t *__ucp) __THROW;
39 extern int swapcontext (ucontext_t *__restrict __oucp,
40 __const ucontext_t *__restrict __ucp) __THROW;
48 extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
ucontext.h 32 extern int getcontext (ucontext_t *__ucp) __THROW;
35 extern int setcontext (__const ucontext_t *__ucp) __THROW;
39 extern int swapcontext (ucontext_t *__restrict __oucp,
40 __const ucontext_t *__restrict __ucp) __THROW;
48 extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
  /external/chromium_org/third_party/tcmalloc/chromium/src/
getpc.h 38 // To get this, we use the ucontext_t argument to the signal-handler
40 // the signal triggered. How to get from a ucontext_t to a Program
61 #include <ucontext.h> // for ucontext_t (and also mcontext_t)
64 typedef ucontext ucontext_t; typedef
137 inline void* GetPC(const ucontext_t& signal_ucontext) {
164 // alas the arguments are different: no ucontext_t! I don't know
170 typedef int ucontext_t; typedef
173 inline void* GetPC(const struct ucontext_t& signal_ucontext) {
178 typedef struct _Unwind_Context ucontext_t; typedef in typeref:struct:_Unwind_Context
180 inline void* GetPC(const ucontext_t& signal_ucontext)
    [all...]
  /external/compiler-rt/lib/asan/
asan_linux.cc 57 ucontext_t *ucontext = (ucontext_t*)context;
62 ucontext_t *ucontext = (ucontext_t*)context;
67 ucontext_t *ucontext = (ucontext_t*)context;
72 ucontext_t *ucontext = (ucontext_t*)context;
79 ucontext_t *ucontext = (ucontext_t*)context
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
getpc.h 38 // To get this, we use the ucontext_t argument to the signal-handler
40 // the signal triggered. How to get from a ucontext_t to a Program
61 #include <ucontext.h> // for ucontext_t (and also mcontext_t)
64 typedef ucontext ucontext_t; typedef
134 inline void* GetPC(const ucontext_t& signal_ucontext) {
161 // alas the arguments are different: no ucontext_t! I don't know
167 typedef int ucontext_t; typedef
170 inline void* GetPC(const struct ucontext_t& signal_ucontext) {
180 inline void* GetPC(const ucontext_t& signal_ucontext) {
profiler.cc 52 typedef ucontext ucontext_t; typedef
54 typedef int ucontext_t; // just to quiet the compiler, mostly typedef
271 stack[0] = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
stacktrace_x86-inl.h 46 #include <ucontext.h> // for ucontext_t
54 typedef ucontext ucontext_t; typedef
186 const ucontext_t *ucv = static_cast<const ucontext_t *>(uc);
288 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only)
  /external/chromium_org/sandbox/linux/services/
android_arm_ucontext.h 26 } ucontext_t; typedef in typeref:struct:ucontext
android_i386_ucontext.h 73 } ucontext_t; typedef in typeref:struct:ucontext
  /external/valgrind/main/memcheck/tests/amd64-linux/
int3-amd64.c 13 ucontext_t *uc = (ucontext_t *)uc_arg;
  /external/valgrind/main/memcheck/tests/x86-linux/
int3-x86.c 13 ucontext_t *uc = (ucontext_t *)uc_arg;
  /external/chromium_org/content/plugin/
plugin_main_linux.cc 23 ucontext_t* context = static_cast<ucontext_t*>(void_context);
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
swapcontext_test.cc 15 ucontext_t orig_context;
16 ucontext_t child_context;
  /system/core/libcorkscrew/arch-mips/
backtrace-mips.c 55 } ucontext_t; typedef in typeref:struct:ucontext
159 const ucontext_t* uc = (const ucontext_t*)sigcontext;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_reliantunix.h 88 extern int getcxt(ucontext_t *);
89 extern int setcxt(ucontext_t *);
96 #define _PR_CONTEXT_TYPE ucontext_t
229 ucontext_t *uc = CONTEXT(_thread); \
_nec.h 65 #define PR_CONTEXT_TYPE ucontext_t
95 ucontext_t *uc = CONTEXT(_thread); \
_solaris.h 220 #define _PR_CONTEXT_TYPE ucontext_t
501 #define _PR_CONTEXT_TYPE ucontext_t
511 #define _PR_CONTEXT_TYPE unsigned int edi; sigset_t oldMask, blockMask; ucontext_t
570 ucontext_t *uc = CONTEXT(_thread); \
603 ucontext_t *uc = CONTEXT(_newThread); \
644 ucontext_t *uc = CONTEXT(_thread); \
656 ucontext_t *uc = CONTEXT(_thread); \
681 ucontext_t *uc = CONTEXT(_newthread); \
_sony.h 56 #define PR_CONTEXT_TYPE ucontext_t
86 ucontext_t *uc = CONTEXT(_thread); \
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
getpc_test.cc 50 getpc_retval = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
getpc_test.cc 50 getpc_retval = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
  /external/valgrind/main/none/tests/x86-linux/
sigcontext.c 12 static void handler1(int sig, siginfo_t *si, ucontext_t *uc)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
ucontext.h 143 } ucontext_t; typedef in typeref:struct:ucontext
244 } ucontext_t; typedef in typeref:struct:ucontext
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
ucontext.h 143 } ucontext_t; typedef in typeref:struct:ucontext
244 } ucontext_t; typedef in typeref:struct:ucontext
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
ucontext.h 143 } ucontext_t; typedef in typeref:struct:ucontext
244 } ucontext_t; typedef in typeref:struct:ucontext

Completed in 452 milliseconds

1 2 3