HomeSort by relevance Sort by last modified time
    Searched refs:UnwindCursor (Results 1 - 4 of 4) sorted by null

  /external/libunwind_llvm/src/
Unwind-seh.cpp 29 #include "UnwindCursor.hpp"
451 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_x86_64> *>(cursor))
452 UnwindCursor<LocalAddressSpace, Registers_x86_64>(
458 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_arm> *>(cursor))
459 UnwindCursor<LocalAddressSpace, Registers_arm>(
465 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_arm64> *>(cursor))
466 UnwindCursor<LocalAddressSpace, Registers_arm64>(
479 return reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_x86_64> *>(cursor)->getDispatcherContext();
481 return reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_arm> *>(cursor)->getDispatcherContext();
483 return reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_arm64> *>(cursor)->getDispatcherContext()
    [all...]
UnwindCursor.hpp 1 //===------------------------- UnwindCursor.hpp ---------------------------===//
455 /// \c UnwindCursor contains all state (including all register values) during
458 class UnwindCursor : public AbstractUnwindCursor {
461 UnwindCursor(unw_context_t *context, A &as);
462 UnwindCursor(CONTEXT *context, A &as);
463 UnwindCursor(A &as, void *threadArg);
464 virtual ~UnwindCursor() {}
487 static void *operator new(size_t, UnwindCursor<A, R> *p) { return p; }
529 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as
    [all...]
libunwind.cpp 22 #include "UnwindCursor.hpp"
68 // Use "placement new" to allocate UnwindCursor in the cursor buffer.
69 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, REGISTER_KIND> *>(cursor))
70 UnwindCursor<LocalAddressSpace, REGISTER_KIND>(
  /external/boringssl/src/crypto/test/
abi_test.cc 248 // UnwindCursor abstracts between libunwind and Windows unwind APIs. It is
251 class UnwindCursor {
253 explicit UnwindCursor(const CONTEXT &ctx) : ctx_(ctx) {
332 class UnwindCursor {
334 explicit UnwindCursor(unw_context_t *ctx) : ctx_(ctx) {
496 static void AddUnwindError(UnwindCursor *cursor, Args... args) {
512 static void CheckUnwind(UnwindCursor *cursor) {
645 UnwindCursor cursor(*info->ContextRecord);
745 UnwindCursor cursor(&ctx);

Completed in 93 milliseconds