Home | History | Annotate | Download | only in debug

Lines Matching defs:StackTrace

38 // A stacktrace can be helpful in debugging. For example, you can include a
39 // stacktrace member in a object (probably around #ifndef NDEBUG) so that you
41 class StackTrace {
43 // Creates a stacktrace from the current location.
44 StackTrace();
46 // Creates a stacktrace from an existing array of instruction
49 StackTrace(const void* const* trace, size_t count);
52 // Creates a stacktrace for an exception.
55 explicit StackTrace(_EXCEPTION_POINTERS* exception_pointers);
56 explicit StackTrace(const _CONTEXT* context);
61 ~StackTrace();