Lines Matching +full:- +full:- +full:stacktrace
2 // Use of this source code is governed by a BSD-style license that can be
32 // unit_tests only! This is not thread-safe: only call from main thread.
36 // contents. In non-official builds, this function also opens the object files
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);
99 // From http://msdn.microsoft.com/en-us/library/bb204633.aspx,
113 // reliable than StackTrace. It should work for debug and profiling builds,
179 // POSIX doesn't define any async-signal safe function for converting