Searched refs:CpuProfile (Results 1 – 8 of 8) sorted by relevance
269 class CpuProfile {271 CpuProfile(CpuProfiler* profiler, const char* title, bool record_samples);308 DISALLOW_COPY_AND_ASSIGN(CpuProfile);342 CpuProfile* StopProfiling(const char* title);343 List<CpuProfile*>* profiles() { return &finished_profiles_; } in profiles()346 void RemoveProfile(CpuProfile* profile);358 List<CpuProfile*> finished_profiles_;362 List<CpuProfile*> current_profiles_;
27 class CpuProfile; variable202 CpuProfile* StopProfiling(const char* title);203 CpuProfile* StopProfiling(String* title);205 CpuProfile* GetProfile(int index);207 void DeleteProfile(CpuProfile* profile);
390 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title, in CpuProfile() function in v8::internal::CpuProfile405 void CpuProfile::AddPath(base::TimeTicks timestamp, in AddPath()451 void CpuProfile::StreamPendingTraceEvents() { in StreamPendingTraceEvents()495 void CpuProfile::FinishProfile() { in FinishProfile()504 void CpuProfile::Print() { in Print()554 static void DeleteCpuProfile(CpuProfile** profile_ptr) { in DeleteCpuProfile()580 current_profiles_.Add(new CpuProfile(profiler_, title, record_samples)); in StartProfiling()586 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) { in StopProfiling()588 CpuProfile* profile = nullptr; in StopProfiling()614 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile) { in RemoveProfile()
204 CpuProfile* CpuProfiler::GetProfile(int index) { in GetProfile()215 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile()329 CpuProfile* CpuProfiler::StopProfiling(const char* title) { in StopProfiling()335 CpuProfile* CpuProfiler::StopProfiling(String* title) { in StopProfiling()
84 v8::CpuProfile* v8profile) { in buildInspectorObjectForSamples()93 v8::CpuProfile* v8profile) { in buildInspectorObjectForTimestamps()114 v8::Isolate* isolate, v8::CpuProfile* v8profile) { in createCPUProfile()289 v8::CpuProfile* profile = in stopProfiling()
228 class V8_EXPORT CpuProfile {317 CpuProfile* StopProfiling(Local<String> title);
9226 void CpuProfile::Delete() { in Delete()9227 i::CpuProfile* profile = reinterpret_cast<i::CpuProfile*>(this); in Delete()9234 Local<String> CpuProfile::GetTitle() const { in GetTitle()9235 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTitle()9242 const CpuProfileNode* CpuProfile::GetTopDownRoot() const { in GetTopDownRoot()9243 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTopDownRoot()9248 const CpuProfileNode* CpuProfile::GetSample(int index) const { in GetSample()9249 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetSample()9254 int64_t CpuProfile::GetSampleTimestamp(int index) const { in GetSampleTimestamp()9255 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetSampleTimestamp()[all …]
18633 StopCpuProfiling should return non-const CpuProfile (issue 3213).