Home | History | Annotate | Download | only in debug

Lines Matching refs:StackTrace

39 // A stacktrace can be helpful in debugging. For example, you can include a
40 // stacktrace member in a object (probably around #ifndef NDEBUG) so that you
42 class BASE_EXPORT StackTrace {
44 // Creates a stacktrace from the current location.
45 StackTrace();
47 // Creates a stacktrace from an existing array of instruction
50 StackTrace(const void* const* trace, size_t count);
53 // Creates a stacktrace for an exception.
56 StackTrace(_EXCEPTION_POINTERS* exception_pointers);
57 StackTrace(const _CONTEXT* context);
62 ~StackTrace();