Home
last modified time | relevance | path

Searched refs:PVActiveStats (Results 1 – 4 of 4) sorted by relevance

/external/opencore/oscl/oscl/osclproc/src/
Doscl_scheduler_aobase.h73 class PVActiveStats
77PVActiveStats(OsclExecSchedulerCommonBase* aScheduler, const char* aAOName, PVActiveBase* aActiveB…
78 ~PVActiveStats();
80 void Combine(PVActiveStats&);
154 PVActiveStats *iPVActiveStats;
155 friend class PVActiveStats; variable
Doscl_scheduler_ao.cpp55 PVActiveStats::PVActiveStats(OsclExecSchedulerCommonBase* aScheduler, const char* aAOName, PVActive… in PVActiveStats() function in PVActiveStats
75 PVActiveStats::~PVActiveStats() in ~PVActiveStats()
83 void PVActiveStats::Combine(PVActiveStats& aStats) in Combine()
109 OsclAny* ptr = iThreadContext.iScheduler->iAlloc->allocate(sizeof(PVActiveStats)); in AddToScheduler()
111 …iPVActiveStats = OSCL_PLACEMENT_NEW(ptr, PVActiveStats(iThreadContext.iScheduler, (char*)iName.Str… in AddToScheduler()
Doscl_scheduler.h276 OsclDoubleList<PVActiveStats> iPVStatQ;//queue of all PV ExecObjs.
285PVActiveStats* iOtherExecStats[EOtherExecStats_Last];//placeholder for stats of all ExecObjs.
289 static void ShowStats(PVActiveStats *active);
290 static void ShowSummaryStats(PVActiveStats *active, PVLogger*, int64, int64&, float&);
295 friend class PVActiveStats; variable
298 PVActiveStats* iPVStats;
Doscl_scheduler.cpp514 OsclAny* ptr = iAlloc->ALLOCATE(sizeof(PVActiveStats)); in ConstructStatQ()
516 …iOtherExecStats[EOtherExecStats_NativeOS] = OSCL_PLACEMENT_NEW(ptr, PVActiveStats(this, "Sched_Tot… in ConstructStatQ()
526 ptr = iAlloc->ALLOCATE(sizeof(PVActiveStats)); in ConstructStatQ()
528 …iOtherExecStats[EOtherExecStats_QueueTime] = OSCL_PLACEMENT_NEW(ptr, PVActiveStats(this, "Sched_Qu… in ConstructStatQ()
530 ptr = iAlloc->ALLOCATE(sizeof(PVActiveStats)); in ConstructStatQ()
532 …iOtherExecStats[EOtherExecStats_WaitTime] = OSCL_PLACEMENT_NEW(ptr, PVActiveStats(this, "Sched_Wai… in ConstructStatQ()
549 PVActiveStats* first = iPVStatQ.Head(); in CleanupStatQ()
551 first->~PVActiveStats(); in CleanupStatQ()
556 void OsclExecSchedulerCommonBase::ShowStats(PVActiveStats *active) in ShowStats()
603 void OsclExecSchedulerCommonBase::ShowSummaryStats(PVActiveStats *active, PVLogger*logger, int64 to… in ShowSummaryStats()
[all …]