AllocationStack 376 tools/memory_watcher/call_stack.cc base::Lock AllocationStack::freelist_lock_; AllocationStack 377 tools/memory_watcher/call_stack.cc AllocationStack* AllocationStack::freelist_ = NULL; AllocationStack 379 tools/memory_watcher/call_stack.cc void* AllocationStack::operator new(size_t size) { AllocationStack 380 tools/memory_watcher/call_stack.cc DCHECK(size == sizeof(AllocationStack)); AllocationStack 384 tools/memory_watcher/call_stack.cc AllocationStack* stack = freelist_; AllocationStack 393 tools/memory_watcher/call_stack.cc void AllocationStack::operator delete(void* ptr) { AllocationStack 394 tools/memory_watcher/call_stack.cc AllocationStack *stack = reinterpret_cast<AllocationStack*>(ptr); AllocationStack 148 tools/memory_watcher/call_stack.h class AllocationStack : public CallStack { AllocationStack 150 tools/memory_watcher/call_stack.h explicit AllocationStack(int32 size) AllocationStack 160 tools/memory_watcher/call_stack.h AllocationStack* next_; // Pointer used when on the freelist. AllocationStack 162 tools/memory_watcher/call_stack.h static AllocationStack* freelist_; AllocationStack 165 tools/memory_watcher/call_stack.h DISALLOW_COPY_AND_ASSIGN(AllocationStack); AllocationStack 107 tools/memory_watcher/memory_watcher.cc AllocationStack* stack = new AllocationStack(size); AllocationStack 161 tools/memory_watcher/memory_watcher.cc AllocationStack* stack = it->second; AllocationStack 210 tools/memory_watcher/memory_watcher.cc AllocationStack* stack = block_it->second; AllocationStack 21 tools/memory_watcher/memory_watcher.h class AllocationStack;