Home | History | Annotate | Download | only in utils

Lines Matching defs:CallStack

32 class CallStack {
42 CallStack();
43 // Create a callstack with the current thread's stack trace.
45 CallStack(const char* logtag, int32_t ignoreDepth=1,
47 // Copy the existing callstack (no other side effects).
48 CallStack(const CallStack& rhs);
49 ~CallStack();
51 // Copy the existing callstack (no other side effects).
52 CallStack& operator = (const CallStack& rhs);
55 bool operator == (const CallStack& rhs) const;
56 bool operator != (const CallStack& rhs) const;
57 bool operator < (const CallStack& rhs) const;
58 bool operator >= (const CallStack& rhs) const;
59 bool operator > (const CallStack& rhs) const;
60 bool operator <= (const CallStack& rhs) const;