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

  /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...]
sampling-heap-profiler.cc 44 v8::AllocationProfile::Allocation SamplingHeapProfiler::ScaleSample(
210 v8::AllocationProfile::Node* SamplingHeapProfiler::TranslateAllocationNode(
211 AllocationProfile* profile, SamplingHeapProfiler::AllocationNode* node,
218 int line = v8::AllocationProfile::kNoLineNumberInfo;
219 int column = v8::AllocationProfile::kNoColumnNumberInfo;
220 std::vector<v8::AllocationProfile::Allocation> allocations;
242 profile->nodes().push_back(v8::AllocationProfile::Node(
246 std::vector<v8::AllocationProfile::Node*>(), allocations}));
247 v8::AllocationProfile::Node* current = &profile->nodes().back();
260 v8::AllocationProfile* SamplingHeapProfiler::GetAllocationProfile()
    [all...]
heap-profiler.h 38 AllocationProfile* GetAllocationProfile();
heap-profiler.cc 117 v8::AllocationProfile* HeapProfiler::GetAllocationProfile() {
  /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/inspector/
v8-heap-profiler-agent-impl.cc 338 buildSampingHeapProfileNode(const v8::AllocationProfile::Node* node) {
370 std::unique_ptr<v8::AllocationProfile> v8Profile(
377 v8::AllocationProfile::Node* root = v8Profile->GetRootNode();
  /external/v8/src/
api.cc     [all...]

Completed in 123 milliseconds