Home
last modified time | relevance | path

Searched refs:nreserve (Results 1 – 3 of 3) sorted by relevance

/external/opencore/oscl/oscl/osclproc/src/
Doscl_scheduler_readyq.cpp95 void OsclReadyQ::Construct(int nreserve) in Construct() argument
98 if (nreserve > 0) in Construct()
99 c.reserve(nreserve); in Construct()
358 void OsclTimerQ::Construct(int nreserve) in Construct() argument
361 if (nreserve > 0) in Construct()
362 c.reserve(nreserve); in Construct()
Doscl_scheduler.cpp84 OSCL_EXPORT_REF void OsclScheduler::Init(const char *name, Oscl_DefAlloc *alloc, int nreserve) in OSCL_DLL_ENTRY_POINT_DEFAULT()
89 OsclExecScheduler *sched = OsclExecScheduler::NewL(name, alloc, nreserve); in OSCL_DLL_ENTRY_POINT_DEFAULT()
274 OsclExecScheduler * OsclExecScheduler::NewL(const char *name, Oscl_DefAlloc *alloc, int nreserve) in NewL() argument
283 self->ConstructL(name, nreserve); in NewL()
324 void OsclExecSchedulerCommonBase::ConstructL(const char *name, int nreserve) in ConstructL() argument
336 InitExecQ(nreserve); in ConstructL()
350 void OsclExecScheduler::ConstructL(const char *name, int nreserve) in ConstructL() argument
352 OsclExecSchedulerCommonBase::ConstructL(name, nreserve); in ConstructL()
979 void OsclExecSchedulerCommonBase::InitExecQ(int nreserve) in InitExecQ() argument
982 iExecTimerQ.Construct(nreserve); in InitExecQ()
[all …]
Doscl_scheduler.h84 …OSCL_IMPORT_REF static void Init(const char *name, Oscl_DefAlloc *alloc = NULL, int nreserve = 20);
378 static OsclExecScheduler *NewL(const char *name, Oscl_DefAlloc *a, int nreserve);