Lines Matching defs:profile

112 #include "src/profiler/profile-generator-inl.h"
9849 i::CpuProfile* profile = reinterpret_cast<i::CpuProfile*>(this);
9850 i::CpuProfiler* profiler = profile->cpu_profiler();
9852 profiler->DeleteProfile(profile);
9856 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9857 i::Isolate* isolate = profile->top_down()->isolate();
9859 isolate->factory()->InternalizeUtf8String(profile->title()));
9863 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9864 return reinterpret_cast<const CpuProfileNode*>(profile->top_down()->root());
9868 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9869 return reinterpret_cast<const CpuProfileNode*>(profile->sample(index).node);
9876 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9877 return profile->sample(index).timestamp.since_origin().InMicroseconds();
9881 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9882 return profile->sample(index).state_tag;
9886 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9887 return profile->sample(index).embedder_state_tag;
9891 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9892 return profile->start_time().since_origin().InMicroseconds();
9896 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
9897 return profile->end_time().since_origin().InMicroseconds();
9900 static i::CpuProfile* ToInternal(const CpuProfile* profile) {
9902 reinterpret_cast<const i::CpuProfile*>(profile));