Searched refs:UnwindCursor (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | libunwind.cpp | 47 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86>( in unw_init_local() 50 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86_64>( in unw_init_local() 53 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_ppc>( in unw_init_local() 56 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm64>( in unw_init_local() 59 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm>( in unw_init_local() 85 UnwindCursor<OtherAddressSpace<Pointer32<LittleEndian> >, in unw_init_remote_thread() 89 new ((void *)cursor) UnwindCursor< in unw_init_remote_thread() 95 UnwindCursor<OtherAddressSpace<Pointer32<BigEndian> >, Registers_ppc>( in unw_init_remote_thread()
|
D | UnwindCursor.hpp | 393 class UnwindCursor : public AbstractUnwindCursor{ class 396 UnwindCursor(unw_context_t *context, A &as); 397 UnwindCursor(A &as, void *threadArg); 398 virtual ~UnwindCursor() {} in ~UnwindCursor() 536 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as) in UnwindCursor() function in libunwind::UnwindCursor 539 static_assert(sizeof(UnwindCursor<A, R>) < sizeof(unw_cursor_t), in UnwindCursor() 545 UnwindCursor<A, R>::UnwindCursor(A &as, void *) in UnwindCursor() function in libunwind::UnwindCursor 554 bool UnwindCursor<A, R>::validReg(int regNum) { in validReg() 559 unw_word_t UnwindCursor<A, R>::getReg(int regNum) { in getReg() 564 void UnwindCursor<A, R>::setReg(int regNum, unw_word_t value) { in setReg() [all …]
|