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

  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfile.h 38 class CpuProfile;
47 static PassRefPtr<ScriptProfile> create(const v8::CpuProfile* profile)
60 ScriptProfile(const v8::CpuProfile* profile)
64 const v8::CpuProfile* m_profile;
ScriptProfile.cpp 44 const_cast<v8::CpuProfile*>(m_profile)->Delete();
ScriptProfiler.cpp 53 const v8::CpuProfile* profile = state ?
  /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(

Completed in 660 milliseconds