HomeSort by relevance Sort by last modified time
    Searched defs:AllocationProfile (Results 1 - 2 of 2) sorted by null

  /external/v8/include/
v8-profiler.h 539 * AllocationProfile is a sampled profile of allocations done by the program.
542 class V8_EXPORT AllocationProfile {
598 * AllocationProfile.
611 * containing AllocationProfile.
615 virtual ~AllocationProfile() {}
790 AllocationProfile* GetAllocationProfile();
  /external/v8/src/profiler/
sampling-heap-profiler.h 26 class AllocationProfile : public v8::AllocationProfile {
28 AllocationProfile() : nodes_() {}
30 v8::AllocationProfile::Node* GetRootNode() override {
34 std::deque<v8::AllocationProfile::Node>& nodes() { return nodes_; }
37 std::deque<v8::AllocationProfile::Node> nodes_;
39 DISALLOW_COPY_AND_ASSIGN(AllocationProfile);
48 v8::AllocationProfile* GetAllocationProfile();
129 // Methods that construct v8::AllocationProfile.
132 // AllocationProfile::Node. The newly created AllocationProfile::Node is adde
    [all...]

Completed in 66 milliseconds