A helper class that combines the StackWalker output into a std::string. More...
Public Member Functions | |
JournalExceptionStackWalker (JournalException *exc) | |
virtual void | OnOutput (LPCSTR szText) |
![]() | |
BOOL | LoadModules () |
void | ShowCallstack () |
BOOL | ShowCallstack (HANDLE hThread=GetCurrentThread(), const CONTEXT *context=NULL, PReadProcessMemoryRoutine readMemoryFunction=NULL, LPVOID pUserData=NULL) |
StackWalker () | |
StackWalker (DWORD dwProcessId, HANDLE hProcess) | |
StackWalker (int options=(int) OptionsAll, LPCSTR szSymPath=NULL, DWORD dwProcessId=GetCurrentProcessId(), HANDLE hProcess=GetCurrentProcess()) | |
virtual | ~StackWalker () |
virtual | ~StackWalker () |
Public Attributes | |
JournalException * | m_exception |
Additional Inherited Members | |
![]() | |
typedef BOOL(__stdcall * | PReadProcessMemoryRoutine) (HANDLE hProcess, DWORD64 qwBaseAddress, PVOID lpBuffer, DWORD nSize, LPDWORD lpNumberOfBytesRead, LPVOID pUserData) |
enum | StackWalkOptions { RetrieveNone = 0, RetrieveSymbol = 1, RetrieveLine = 2, RetrieveModuleInfo = 4, RetrieveFileVersion = 8, RetrieveVerbose = 0xF, SymBuildPath = 0x10, SymUseSymSrv = 0x20, SymAll = 0x30, OptionsAll = 0x3F } |
![]() | |
enum | { STACKWALK_MAX_NAMELEN = 1024 } |
enum | CallstackEntryType { firstEntry, nextEntry, lastEntry } |
![]() | |
virtual void | OnCallstackEntry (CallstackEntryType eType, CallstackEntry &entry) |
virtual void | OnDbgHelpErr (LPCSTR szFuncName, DWORD gle, DWORD64 addr) |
virtual void | OnLoadModule (LPCSTR img, LPCSTR mod, DWORD64 baseAddr, DWORD size, DWORD result, LPCSTR symType, LPCSTR pdbName, ULONGLONG fileVersion) |
virtual void | OnSymInit (LPCSTR szSearchPath, DWORD symOptions, LPCSTR szUserName) |
StackWalker & | operator= (StackWalker const &)=delete |
StackWalker (StackWalker const &)=delete | |
![]() | |
static BOOL __stdcall | myReadProcMem (HANDLE hProcess, DWORD64 qwBaseAddress, PVOID lpBuffer, DWORD nSize, LPDWORD lpNumberOfBytesRead) |
![]() | |
DWORD | m_dwProcessId |
HANDLE | m_hProcess |
BOOL | m_modulesLoaded |
int | m_options |
StackWalkerInternal * | m_sw |
LPSTR | m_szSymPath |
friend | StackWalkerInternal |
A helper class that combines the StackWalker output into a std::string.
Definition at line 69 of file journalexception.cpp.
|
inline |
Definition at line 72 of file journalexception.cpp.
|
inlinevirtual |
Reimplemented from StackWalker.
Definition at line 79 of file journalexception.cpp.
JournalException* JournalExceptionStackWalker::m_exception |
Definition at line 77 of file journalexception.cpp.