/third_party/node/deps/v8/src/profiler/ |
D | cpu-profiler.cc | 423 int CpuProfiler::GetProfilesCount() { in GetProfilesCount() 429 CpuProfile* CpuProfiler::GetProfile(int index) { in GetProfile() 434 void CpuProfiler::DeleteAllProfiles() { in DeleteAllProfiles() 440 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile() 452 void AddProfiler(Isolate* isolate, CpuProfiler* profiler) { in AddProfiler() 457 void RemoveProfiler(Isolate* isolate, CpuProfiler* profiler) { in RemoveProfiler() 487 std::unordered_multimap<Isolate*, CpuProfiler*> profilers_; 495 CpuProfiler::CpuProfiler(Isolate* isolate, CpuProfilingNamingMode naming_mode, in CpuProfiler() function in v8::internal::CpuProfiler 497 : CpuProfiler(isolate, naming_mode, logging_mode, in CpuProfiler() 501 CpuProfiler::CpuProfiler(Isolate* isolate, CpuProfilingNamingMode naming_mode, in CpuProfiler() function in v8::internal::CpuProfiler [all …]
|
D | cpu-profiler.h | 320 class V8_EXPORT_PRIVATE CpuProfiler { 322 explicit CpuProfiler(Isolate* isolate, CpuProfilingNamingMode = kDebugNaming, 325 CpuProfiler(Isolate* isolate, CpuProfilingNamingMode naming_mode, 331 ~CpuProfiler(); 332 CpuProfiler(const CpuProfiler&) = delete; 333 CpuProfiler& operator=(const CpuProfiler&) = delete;
|
D | tracing-cpu-profiler.h | 18 class CpuProfiler; variable 38 std::unique_ptr<CpuProfiler> profiler_;
|
D | profile-generator.h | 402 class CpuProfiler; variable 415 CpuProfiler* profiler, ProfilerId id, const char* title, 443 CpuProfiler* cpu_profiler() const { return profiler_; } in cpu_profiler() 462 CpuProfiler* const profiler_; 543 void set_cpu_profiler(CpuProfiler* profiler) { profiler_ = profiler; } in set_cpu_profiler() 586 CpuProfiler* profiler_;
|
D | tracing-cpu-profiler.cc | 54 profiler_.reset(new CpuProfiler(isolate_, kDebugNaming)); in StartProfiling()
|
D | profile-generator.cc | 575 CpuProfile::CpuProfile(CpuProfiler* profiler, ProfilerId id, const char* title, in CpuProfile()
|
/third_party/node/deps/v8/include/ |
D | v8-profiler.h | 405 class V8_EXPORT CpuProfiler { 412 static CpuProfiler* New(Isolate* isolate, 533 CpuProfiler(); 534 ~CpuProfiler(); 535 CpuProfiler(const CpuProfiler&); 536 CpuProfiler& operator=(const CpuProfiler&);
|
/third_party/node/deps/v8/src/inspector/ |
D | v8-profiler-agent-impl.h | 16 class CpuProfiler; variable 76 v8::CpuProfiler* m_profiler = nullptr;
|
D | v8-profiler-agent-impl.cc | 536 m_profiler = v8::CpuProfiler::New(m_isolate); in startProfiling()
|
/third_party/node/deps/v8/src/api/ |
D | api.cc | 9023 i::CpuProfiler::GetAllProfilersMemorySize( in GetHeapCodeAndMetadataStatistics() 9850 i::CpuProfiler* profiler = profile->cpu_profiler(); in Delete() 9919 CpuProfiler* CpuProfiler::New(Isolate* isolate, in New() 9922 return reinterpret_cast<CpuProfiler*>(new i::CpuProfiler( in New() 9948 void CpuProfiler::Dispose() { delete reinterpret_cast<i::CpuProfiler*>(this); } in Dispose() 9951 void CpuProfiler::CollectSample(Isolate* isolate) { in CollectSample() 9952 i::CpuProfiler::CollectSample(reinterpret_cast<i::Isolate*>(isolate)); in CollectSample() 9955 void CpuProfiler::SetSamplingInterval(int us) { in SetSamplingInterval() 9957 return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval( in SetSamplingInterval() 9961 void CpuProfiler::SetUsePreciseSampling(bool use_precise_sampling) { in SetUsePreciseSampling() [all …]
|
/third_party/node/src/api/ |
D | environment.cc | 309 v8::CpuProfiler::UseDetailedSourcePositionsForProfiling(isolate); in SetIsolateMiscHandlers()
|
/third_party/node/src/ |
D | js_native_api_v8.cc | 1768 auto profiler = v8::CpuProfiler::New(isolate); in OH_JSVM_StartCpuProfiler() 1780 auto v8profiler = reinterpret_cast<v8::CpuProfiler*>(profiler); in OH_JSVM_StopCpuProfiler()
|
/third_party/libabigail/tests/data/test-annotate/ |
D | test19-pr19023-libtcmalloc_and_profiler.so.abi | 240 <!-- CpuProfiler::FlushTable() --> 242 <!-- CpuProfiler::prof_handler(int, siginfo*, void*, void*) --> 244 <!-- CpuProfiler::EnableHandler() --> 246 <!-- CpuProfiler::DisableHandler() --> 248 <!-- CpuProfiler::GetCurrentState(ProfilerState*) --> 250 <!-- CpuProfiler::Stop() --> 252 <!-- CpuProfiler::Start(char const*, ProfilerOptions const*) --> 254 <!-- CpuProfiler::Enabled() --> 256 <!-- CpuProfiler::CpuProfiler() --> 258 <!-- CpuProfiler::CpuProfiler() --> [all …]
|
/third_party/node/deps/v8/src/d8/ |
D | d8.cc | 5480 CpuProfiler* cpu_profiler; in Main() 5482 cpu_profiler = CpuProfiler::New(isolate); in Main()
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test19-pr19023-libtcmalloc_and_profiler.so.abi | 13264 …<class-decl name='CpuProfiler' size-in-bits='704' visibility='default' filepath='src/profiler.cc' … 13284 …<function-decl name='CpuProfiler' mangled-name='_ZN11CpuProfilerC1Ev' filepath='src/profiler.cc' l… 13290 …<function-decl name='~CpuProfiler' mangled-name='_ZN11CpuProfilerD1Ev' filepath='src/profiler.cc' …
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V4.md | 3344 …(https://github.com/nodejs/node/commit/b0df2273ab)] - **src**: fix v8::CpuProfiler idle sampling (…
|