Home
last modified time | relevance | path

Searched refs:aReason (Results 1 – 8 of 8) sorted by relevance

/external/opencore/oscl/oscl/osclerror/src/
Doscl_error.cpp166 OSCL_EXPORT_REF void OsclError::Leave(int32 aReason) in Leave() argument
170 , (0, "OsclError::Leave! reason %d", aReason)); in Leave()
178 errortrap->iLeave = aReason; in Leave()
194 OSCL_EXPORT_REF void OsclError::LeaveIfError(int32 aReason) in LeaveIfError() argument
196 if (aReason != OsclErrNone) in LeaveIfError()
197 Leave(aReason); in LeaveIfError()
Doscl_error.h123 OSCL_IMPORT_REF static void Leave(int32 aReason);
134 OSCL_IMPORT_REF static void LeaveIfError(int32 aReason);
/external/opencore/oscl/oscl/osclproc/src/
Doscl_scheduler_threadcontext.cpp85 void PVThreadContext::PendComplete(PVActiveBase *pvbase, int32 aReason, TPVThreadContext aCallingCo… in PendComplete() argument
91 if (aReason == OSCL_REQUEST_PENDING) in PendComplete()
99 iScheduler->PendComplete(pvbase, aReason, EPVThreadContext_InThread); in PendComplete()
101 iScheduler->PendComplete(pvbase, aReason, aCallingContext); in PendComplete()
Doscl_scheduler_threadcontext.h107 void PendComplete(PVActiveBase*, int32 aReason, TPVThreadContext aCallingContext);
Doscl_scheduler_readyq.cpp236 int32 OsclReadyQ::PendComplete(PVActiveBase *pvbase, int32 aReason) in PendComplete() argument
269 pvbase->iStatus = aReason; in PendComplete()
Doscl_scheduler_readyq.h115 int32 PendComplete(PVActiveBase *pvbase, int32 aReason);
Doscl_scheduler.h255 void PendComplete(PVActiveBase *, int32 aReason, TPVThreadContext aContext);
Doscl_scheduler.cpp1137 void OsclExecSchedulerCommonBase::PendComplete(PVActiveBase *pvbase, int32 aReason, TPVThreadContex… in PendComplete() argument
1153 int32 err = iReadyQ.PendComplete(pvbase, aReason); in PendComplete()