Searched refs:UnwindCursor (Results 1 – 3 of 3) sorted by relevance
/external/libunwind_llvm/src/ |
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() 571 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as) in UnwindCursor() function in libunwind::UnwindCursor 574 static_assert(sizeof(UnwindCursor<A, R>) < sizeof(unw_cursor_t), in UnwindCursor() 580 UnwindCursor<A, R>::UnwindCursor(A &as, void *) in UnwindCursor() function in libunwind::UnwindCursor 589 bool UnwindCursor<A, R>::validReg(int regNum) { in validReg() 594 unw_word_t UnwindCursor<A, R>::getReg(int regNum) { in getReg() 599 void UnwindCursor<A, R>::setReg(int regNum, unw_word_t value) { in setReg() [all …]
|
D | libunwind.cpp | 53 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86>( in unw_init_local() 56 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_x86_64>( in unw_init_local() 59 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_ppc>( in unw_init_local() 62 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm64>( in unw_init_local() 65 new ((void *)cursor) UnwindCursor<LocalAddressSpace, Registers_arm>( in unw_init_local() 89 UnwindCursor<OtherAddressSpace<Pointer32<LittleEndian> >, in unw_init_remote_thread() 93 new ((void *)cursor) UnwindCursor< in unw_init_remote_thread() 99 UnwindCursor<OtherAddressSpace<Pointer32<BigEndian> >, Registers_ppc>( in unw_init_remote_thread()
|
D | CMakeLists.txt | 33 UnwindCursor.hpp
|