HomeSort by relevance Sort by last modified time
    Searched refs:CpuProfile (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.h 39 class CpuProfile;
46 static PassRefPtr<ScriptProfile> create(const v8::CpuProfile* profile, double idleTime)
63 ScriptProfile(const v8::CpuProfile* profile, double idleTime)
69 const v8::CpuProfile* m_profile;
ScriptProfile.cpp 43 const_cast<v8::CpuProfile*>(m_profile)->Delete();
  /external/chromium_org/v8/src/
profile-generator.h 197 class CpuProfile {
199 CpuProfile(const char* title, unsigned uid, bool record_samples);
229 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
285 CpuProfile* StopProfiling(const char* title);
286 List<CpuProfile*>* profiles() { return &finished_profiles_; }
300 void RemoveProfile(CpuProfile* profile);
319 List<CpuProfile*> finished_profiles_;
322 List<CpuProfile*> current_profiles_;
cpu-profiler.h 45 class CpuProfile;
214 CpuProfile* StopProfiling(const char* title);
215 CpuProfile* StopProfiling(String* title);
217 CpuProfile* GetProfile(int index);
219 void DeleteProfile(CpuProfile* profile);
profile-generator.cc 355 CpuProfile::CpuProfile(const char* title, unsigned uid, bool record_samples)
364 void CpuProfile::AddPath(const Vector<CodeEntry*>& path) {
370 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
375 void CpuProfile::Print() {
477 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
504 current_profiles_.Add(new CpuProfile(title, uid, record_samples));
510 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
512 CpuProfile* profile = NULL;
538 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile)
    [all...]
cpu-profiler.cc 165 CpuProfile* CpuProfiler::GetProfile(int index) {
176 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
469 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
472 CpuProfile* result = profiles_->StopProfiling(title);
480 CpuProfile* CpuProfiler::StopProfiling(String* title) {
api.cc     [all...]
  /external/v8/src/
cpu-profiler.h 42 class CpuProfile;
211 static CpuProfile* StopProfiling(const char* title);
212 static CpuProfile* StopProfiling(Object* security_token, String* title);
214 static CpuProfile* GetProfile(Object* security_token, int index);
215 static CpuProfile* FindProfile(Object* security_token, unsigned uid);
217 static void DeleteProfile(CpuProfile* profile);
261 CpuProfile* StopCollectingProfile(const char* title);
262 CpuProfile* StopCollectingProfile(Object* security_token, String* title);
cpu-profiler.cc 274 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
281 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) {
297 CpuProfile* CpuProfiler::GetProfile(Object* security_token, int index) {
305 CpuProfile* CpuProfiler::FindProfile(Object* security_token, unsigned uid) {
332 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
518 CpuProfile* CpuProfiler::StopCollectingProfile(const char* title) {
521 CpuProfile* result =
532 CpuProfile* CpuProfiler::StopCollectingProfile(Object* security_token,
profile-generator.h 211 class CpuProfile {
213 CpuProfile(const char* title, unsigned uid)
220 CpuProfile* FilteredClone(int security_token_id);
238 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
295 CpuProfile* StopProfiling(int security_token_id,
298 List<CpuProfile*>* Profiles(int security_token_id);
305 CpuProfile* GetProfile(int security_token_id, unsigned uid);
307 void RemoveProfile(CpuProfile* profile);
332 List<CpuProfile*>* GetProfilesList(int security_token_id);
341 List<List<CpuProfile*>* > profiles_by_token_
    [all...]
profile-generator.cc 454 void CpuProfile::AddPath(const Vector<CodeEntry*>& path) {
460 void CpuProfile::CalculateTotalTicks() {
466 void CpuProfile::SetActualSamplingRate(double actual_sampling_rate) {
472 CpuProfile* CpuProfile::FilteredClone(int security_token_id) {
474 CpuProfile* clone = new CpuProfile(title_, uid_);
481 void CpuProfile::ShortPrint() {
489 void CpuProfile::Print() {
577 profiles_by_token_.Add(new List<CpuProfile*>());
    [all...]
api.cc     [all...]
  /external/v8/test/cctest/
test-cpu-profiler.cc 11 using i::CpuProfile;
166 CpuProfile* profile =
253 CpuProfile* profile =
307 const v8::CpuProfile* p1 = v8::CpuProfiler::StopProfiling(name1);
312 const_cast<v8::CpuProfile*>(p1)->Delete();
318 const v8::CpuProfile* p2 = v8::CpuProfiler::StopProfiling(name2);
327 const v8::CpuProfile* p3 = v8::CpuProfiler::StopProfiling(name3);
334 const_cast<v8::CpuProfile*>(p2)->Delete();
338 const_cast<v8::CpuProfile*>(p3)->Delete();
353 const v8::CpuProfile* p1 = v8::CpuProfiler::StopProfiling(name1)
    [all...]
test-profile-generator.cc 12 using i::CpuProfile;
620 CpuProfile* profile =
778 CpuProfile* profile =
  /external/v8/include/
v8-profiler.h 117 * CpuProfile contains a CPU profile in a form of two call trees:
121 class V8EXPORT CpuProfile {
168 static const CpuProfile* GetProfile(
173 static const CpuProfile* FindProfile(
191 static const CpuProfile* StopProfiling(
  /external/chromium_org/v8/include/
v8-profiler.h 94 * CpuProfile contains a CPU profile in a form of top-down call tree
97 class V8_EXPORT CpuProfile {
164 const CpuProfile* GetCpuProfile(int index);
183 const CpuProfile* StopCpuProfiling(Handle<String> title);
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 38 using i::CpuProfile;
230 CpuProfile* profile = profiles->StopProfiling("");
295 CpuProfile* profile = profiles->StopProfiling("");
339 static const v8::CpuProfile* FindCpuProfile(v8::CpuProfiler* profiler,
343 const v8::CpuProfile* profile = profiler->GetCpuProfile(i);
360 const v8::CpuProfile* p1 = cpu_profiler->StopCpuProfiling(name1);
365 const_cast<v8::CpuProfile*>(p1)->Delete();
371 const v8::CpuProfile* p2 = cpu_profiler->StopCpuProfiling(name2);
380 const v8::CpuProfile* p3 = cpu_profiler->StopCpuProfiling(name3);
387 const_cast<v8::CpuProfile*>(p2)->Delete()
    [all...]
test-profile-generator.cc 38 using i::CpuProfile;
438 CpuProfile* profile = profiles.StopProfiling("");
501 CpuProfile* profile = profiles.StopProfiling("");
530 CpuProfile* profile = profiles.StopProfiling("");
627 CpuProfile* profile = profiler->GetProfile(0);
708 const v8::CpuProfile* profile = profiler->GetCpuProfile(0);
816 const v8::CpuProfile* profile = profiler->GetCpuProfile(0);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptProfiler.cpp 83 const v8::CpuProfile* profile = profiler->StopCpuProfiling(v8String(isolate, title));

Completed in 70 milliseconds