Searched refs:CpuProfile (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/profiler/ |
D | profile-generator.cc | 389 std::atomic<uint32_t> CpuProfile::last_id_; 391 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title, in CpuProfile() function in v8::internal::CpuProfile 408 void CpuProfile::AddPath(base::TimeTicks timestamp, in AddPath() 456 void CpuProfile::StreamPendingTraceEvents() { in StreamPendingTraceEvents() 500 void CpuProfile::FinishProfile() { in FinishProfile() 509 void CpuProfile::Print() { in Print() 614 for (const std::unique_ptr<CpuProfile>& profile : current_profiles_) { in StartProfiling() 623 new CpuProfile(profiler_, title, record_samples, mode)); in StartProfiling() 629 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) { in StopProfiling() 631 CpuProfile* profile = nullptr; in StopProfiling() [all …]
|
D | cpu-profiler.h | 27 class CpuProfile; variable 209 CpuProfile* StopProfiling(const char* title); 210 CpuProfile* StopProfiling(String* title); 212 CpuProfile* GetProfile(int index); 214 void DeleteProfile(CpuProfile* profile);
|
D | profile-generator.h | 317 class CpuProfile { 321 CpuProfile(CpuProfiler* profiler, const char* title, bool record_samples, 363 DISALLOW_COPY_AND_ASSIGN(CpuProfile); 411 CpuProfile* StopProfiling(const char* title); 412 std::vector<std::unique_ptr<CpuProfile>>* profiles() { in profiles() 417 void RemoveProfile(CpuProfile* profile); 429 std::vector<std::unique_ptr<CpuProfile>> finished_profiles_; 433 std::vector<std::unique_ptr<CpuProfile>> current_profiles_;
|
D | cpu-profiler.cc | 213 CpuProfile* CpuProfiler::GetProfile(int index) { in GetProfile() 224 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile() 401 CpuProfile* CpuProfiler::StopProfiling(const char* title) { in StopProfiling() 407 CpuProfile* CpuProfiler::StopProfiling(String* title) { in StopProfiling()
|
/external/v8/src/inspector/ |
D | v8-profiler-agent-impl.cc | 100 v8::CpuProfile* v8profile) { in buildInspectorObjectForSamples() 109 v8::CpuProfile* v8profile) { in buildInspectorObjectForTimestamps() 131 V8InspectorImpl* inspector, v8::CpuProfile* v8profile) { in createCPUProfile() 510 v8::CpuProfile* profile = in stopProfiling()
|
/external/v8/include/ |
D | v8-profiler.h | 215 class V8_EXPORT CpuProfile { 328 CpuProfile* StopProfiling(Local<String> title);
|
/external/v8/src/ |
D | api.cc | 10061 void CpuProfile::Delete() { in Delete() 10062 i::CpuProfile* profile = reinterpret_cast<i::CpuProfile*>(this); in Delete() 10069 Local<String> CpuProfile::GetTitle() const { in GetTitle() 10070 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTitle() 10077 const CpuProfileNode* CpuProfile::GetTopDownRoot() const { in GetTopDownRoot() 10078 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTopDownRoot() 10083 const CpuProfileNode* CpuProfile::GetSample(int index) const { in GetSample() 10084 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetSample() 10089 int64_t CpuProfile::GetSampleTimestamp(int index) const { in GetSampleTimestamp() 10090 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetSampleTimestamp() [all …]
|
/external/v8/ |
D | ChangeLog | 43534 StopCpuProfiling should return non-const CpuProfile (issue 3213).
|