Searched refs:UnwindCursor (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | libunwind.cpp | 54 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86>( in unw_init_local() 57 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86_64>( in unw_init_local() 60 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_ppc>( in unw_init_local() 63 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm64>( in unw_init_local() 66 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm>( in unw_init_local() 88 UnwindCursor<OtherAddressSpace<Pointer32<LittleEndian> >, in unw_init_remote_thread() 92 new ((void *)cursor) UnwindCursor< in unw_init_remote_thread() 98 UnwindCursor<OtherAddressSpace<Pointer32<BigEndian> >, Registers_ppc>( in unw_init_remote_thread()
|
D | UnwindCursor.hpp | 416 class UnwindCursor : public AbstractUnwindCursor{ class 419 UnwindCursor(unw_context_t *context, A &as); 420 UnwindCursor(A &as, void *threadArg); 421 virtual ~UnwindCursor() {} in ~UnwindCursor() 557 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as) in UnwindCursor() function in libunwind::UnwindCursor 560 static_assert(sizeof(UnwindCursor<A, R>) < sizeof(unw_cursor_t), in UnwindCursor() 566 UnwindCursor<A, R>::UnwindCursor(A &as, void *) in UnwindCursor() function in libunwind::UnwindCursor 575 bool UnwindCursor<A, R>::validReg(int regNum) { in validReg() 580 unw_word_t UnwindCursor<A, R>::getReg(int regNum) { in getReg() 585 void UnwindCursor<A, R>::setReg(int regNum, unw_word_t value) { in setReg() [all …]
|