Home | History | Annotate | Download | only in debug

Lines Matching full:stacktrace

63 // A stacktrace can be helpful in debugging. For example, you can include a
64 // stacktrace member in a object (probably around #ifndef NDEBUG) so that you
66 class BASE_EXPORT StackTrace {
68 // Creates a stacktrace from the current location.
69 StackTrace();
71 // Creates a stacktrace from the current location, of up to |count| entries.
73 explicit StackTrace(size_t count);
75 // Creates a stacktrace from an existing array of instruction
78 StackTrace(const void* const* trace, size_t count);
81 // Creates a stacktrace for an exception.
84 StackTrace(_EXCEPTION_POINTERS* exception_pointers);
85 StackTrace(const _CONTEXT* context);
124 // reliable than StackTrace. It should work for debug and profiling builds,