Searched refs:CpuProfile (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DScriptProfile.h38 class CpuProfile;
47 static PassRefPtr<ScriptProfile> create(const v8::CpuProfile* profile)
60 ScriptProfile(const v8::CpuProfile* profile)
64 const v8::CpuProfile* m_profile;
H A DScriptProfile.cpp44 const_cast<v8::CpuProfile*>(m_profile)->Delete();
H A DScriptProfiler.cpp53 const v8::CpuProfile* profile = state ?
/external/v8/src/
H A Dcpu-profiler.h42 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);
H A Dcpu-profiler.cc274 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,
H A Dprofile-generator.h211 class CpuProfile { class in namespace:v8::internal
213 CpuProfile(const char* title, unsigned uid) function in class:v8::internal::CpuProfile
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...]
H A Dprofile-generator.cc454 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...]
H A Dapi.cc5856 void CpuProfile::Delete() {
5858 IsDeadCheck(isolate, "v8::CpuProfile::Delete");
5859 i::CpuProfiler::DeleteProfile(reinterpret_cast<i::CpuProfile*>(this));
5868 unsigned CpuProfile::GetUid() const {
5870 IsDeadCheck(isolate, "v8::CpuProfile::GetUid");
5871 return reinterpret_cast<const i::CpuProfile*>(this)->uid();
5875 Handle<String> CpuProfile::GetTitle() const {
5877 IsDeadCheck(isolate, "v8::CpuProfile::GetTitle");
5878 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(thi
[all...]
/external/v8/test/cctest/
H A Dtest-cpu-profiler.cc11 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* p
[all...]
H A Dtest-profile-generator.cc12 using i::CpuProfile;
620 CpuProfile* profile =
778 CpuProfile* profile =
/external/v8/include/
H A Dv8-profiler.h117 * CpuProfile contains a CPU profile in a form of two call trees:
121 class V8EXPORT CpuProfile { class in namespace:v8
168 static const CpuProfile* GetProfile(
173 static const CpuProfile* FindProfile(
191 static const CpuProfile* StopProfiling(

Completed in 206 milliseconds