Lines Matching refs:CpuProfile

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*>());
585 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
589 static void DeleteProfilesList(List<CpuProfile*>** list_ptr) {
619 current_profiles_.Add(new CpuProfile(title, uid));
630 CpuProfile* CpuProfilesCollection::StopProfiling(int security_token_id,
634 CpuProfile* profile = NULL;
647 List<CpuProfile*>* unabridged_list =
662 CpuProfile* CpuProfilesCollection::GetProfile(int security_token_id,
666 List<CpuProfile*>* unabridged_list =
671 List<CpuProfile*>* list = GetProfilesList(security_token_id);
698 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile) {
718 List<CpuProfile*>* list = profiles_by_token_[i];
722 CpuProfile* cloned_profile = list->Remove(index);
737 List<CpuProfile*>* CpuProfilesCollection::GetProfilesList(
742 List<CpuProfile*>* unabridged_list =
746 profiles_by_token_[index] = new List<CpuProfile*>(current_count);
748 List<CpuProfile*>* list = profiles_by_token_[index];
755 List<CpuProfile*>* CpuProfilesCollection::Profiles(int security_token_id) {
756 List<CpuProfile*>* unabridged_list =
761 List<CpuProfile*>* list = GetProfilesList(security_token_id);