Lines Matching full:stacktrace
52 // A stacktrace can be helpful in debugging. For example, you can include a
53 // stacktrace member in a object (probably around #ifndef NDEBUG) so that you
55 class BASE_EXPORT StackTrace {
57 // Creates a stacktrace from the current location.
58 StackTrace();
60 // Creates a stacktrace from the current location, of up to |count| entries.
62 explicit StackTrace(size_t count);
64 // Creates a stacktrace from an existing array of instruction
67 StackTrace(const void* const* trace, size_t count);
70 // Creates a stacktrace for an exception.
73 StackTrace(_EXCEPTION_POINTERS* exception_pointers);
74 StackTrace(const _CONTEXT* context);
113 // reliable than StackTrace. It should work for debug and profiling builds,