• Home
  • Raw
  • Download

Lines Matching refs:CpuProfiler

278 void CpuProfiler::StartProfiling(const char* title) {  in StartProfiling()
284 void CpuProfiler::StartProfiling(String* title) { in StartProfiling()
290 CpuProfile* CpuProfiler::StopProfiling(const char* title) { in StopProfiling()
296 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) { in StopProfiling()
303 int CpuProfiler::GetProfilesCount() { in GetProfilesCount()
311 CpuProfile* CpuProfiler::GetProfile(Object* security_token, int index) { in GetProfile()
313 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); in GetProfile()
319 CpuProfile* CpuProfiler::FindProfile(Object* security_token, unsigned uid) { in FindProfile()
321 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); in FindProfile()
327 TickSample* CpuProfiler::TickSampleEvent(Isolate* isolate) { in TickSampleEvent()
328 if (CpuProfiler::is_profiling(isolate)) { in TickSampleEvent()
336 void CpuProfiler::DeleteAllProfiles() { in DeleteAllProfiles()
345 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile()
352 bool CpuProfiler::HasDetachedProfiles() { in HasDetachedProfiles()
358 void CpuProfiler::CallbackEvent(String* name, Address entry_point) { in CallbackEvent()
364 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
371 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
385 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
401 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
416 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
426 void CpuProfiler::CodeMoveEvent(Address from, Address to) { in CodeMoveEvent()
431 void CpuProfiler::CodeDeleteEvent(Address from) { in CodeDeleteEvent()
436 void CpuProfiler::SharedFunctionInfoMoveEvent(Address from, Address to) { in SharedFunctionInfoMoveEvent()
437 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); in SharedFunctionInfoMoveEvent()
442 void CpuProfiler::GetterCallbackEvent(String* name, Address entry_point) { in GetterCallbackEvent()
448 void CpuProfiler::RegExpCodeCreateEvent(Code* code, String* source) { in RegExpCodeCreateEvent()
458 void CpuProfiler::SetterCallbackEvent(String* name, Address entry_point) { in SetterCallbackEvent()
464 CpuProfiler::CpuProfiler() in CpuProfiler() function in v8::internal::CpuProfiler
475 CpuProfiler::~CpuProfiler() { in ~CpuProfiler()
481 void CpuProfiler::ResetProfiles() { in ResetProfiles()
486 void CpuProfiler::StartCollectingProfile(const char* title) { in StartCollectingProfile()
494 void CpuProfiler::StartCollectingProfile(String* title) { in StartCollectingProfile()
499 void CpuProfiler::StartProcessorIfNotStarted() { in StartProcessorIfNotStarted()
532 CpuProfile* CpuProfiler::StopCollectingProfile(const char* title) { in StopCollectingProfile()
546 CpuProfile* CpuProfiler::StopCollectingProfile(Object* security_token, in StopCollectingProfile()
556 void CpuProfiler::StopProcessorIfLastProfile(const char* title) { in StopProcessorIfLastProfile()
561 void CpuProfiler::StopProcessor() { in StopProcessor()
586 void CpuProfiler::Setup() { in Setup()
590 isolate->set_cpu_profiler(new CpuProfiler()); in Setup()
596 void CpuProfiler::TearDown() { in TearDown()