Home
last modified time | relevance | path

Searched refs:allocation_tracker_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
Dheap-profiler.cc98 allocation_tracker_.Reset(new AllocationTracker(ids_.get(), names_.get())); in StartHeapObjectsTracking()
112 allocation_tracker_.Reset(NULL); in StopHeapObjectsTracking()
149 if (!known_object && !allocation_tracker_.is_empty()) { in ObjectMoveEvent()
150 allocation_tracker_->address_to_trace()->MoveObject(from, to, size); in ObjectMoveEvent()
157 if (!allocation_tracker_.is_empty()) { in AllocationEvent()
158 allocation_tracker_->AllocationEvent(addr, size); in AllocationEvent()
Dheap-profiler.h36 return allocation_tracker_.get(); in allocation_tracker()
63 return !allocation_tracker_.is_empty(); in is_tracking_allocations()
78 SmartPointer<AllocationTracker> allocation_tracker_; variable