Home | History | Annotate | Download | only in memory_watcher

Lines Matching defs:CallStack

24 // The CallStack Class
26 class CallStack {
31 CallStack();
32 virtual ~CallStack() {}
34 // Get a hash for this CallStack.
38 // Get a unique ID for this CallStack.
49 // Compares the CallStack to another CallStack
52 bool IsEqual(const CallStack &target);
57 // Convert the callstack to a string stored in output.
58 void CallStack::ToString(PrivateAllocatorString* output);
67 // Pushes a frame's program counter onto the CallStack.
94 CallStack::LockDbgHelp();
97 CallStack::UnlockDbgHelp();
141 DISALLOW_COPY_AND_ASSIGN(CallStack);
144 // An AllocationStack is a type of CallStack which represents a CallStack where
148 class AllocationStack : public CallStack {
151 : next_(NULL), size_(size), CallStack() {}