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

  /external/libcxxabi/src/Unwind/
libunwind.cpp 31 #include "UnwindCursor.hpp"
52 // Use "placement new" to allocate UnwindCursor in the cursor buffer.
54 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86>(
57 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86_64>(
60 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_ppc>(
63 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm64>(
66 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm>(
84 // use "placement new" to allocate UnwindCursor in the cursor buffer
88 UnwindCursor<OtherAddressSpace<Pointer32<LittleEndian> >,
92 new ((void *)cursor) UnwindCursor<
    [all...]
UnwindCursor.hpp 1 //===------------------------- UnwindCursor.hpp ---------------------------===//
413 /// UnwindCursor contains all state (including all register values) during
416 class UnwindCursor : public AbstractUnwindCursor{
419 UnwindCursor(unw_context_t *context, A &as);
420 UnwindCursor(A &as, void *threadArg);
421 virtual ~UnwindCursor() {}
557 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as)
560 static_assert(sizeof(UnwindCursor<A, R>) < sizeof(unw_cursor_t),
561 "UnwindCursor<> does not fit in unw_cursor_t")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
libunwind.cpp 28 #include "UnwindCursor.hpp"
45 // Use "placement new" to allocate UnwindCursor in the cursor buffer.
47 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86>(
50 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86_64>(
53 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_ppc>(
56 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm64>(
59 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm>(
81 // use "placement new" to allocate UnwindCursor in the cursor buffer
85 UnwindCursor<OtherAddressSpace<Pointer32<LittleEndian> >,
89 new ((void *)cursor) UnwindCursor<
    [all...]
UnwindCursor.hpp 1 //===------------------------- UnwindCursor.hpp ---------------------------===//
390 /// UnwindCursor contains all state (including all register values) during
393 class UnwindCursor : public AbstractUnwindCursor{
396 UnwindCursor(unw_context_t *context, A &as);
397 UnwindCursor(A &as, void *threadArg);
398 virtual ~UnwindCursor() {}
536 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as)
539 static_assert(sizeof(UnwindCursor<A, R>) < sizeof(unw_cursor_t),
540 "UnwindCursor<> does not fit in unw_cursor_t")
    [all...]

Completed in 146 milliseconds