Home | History | Annotate | Download | only in utils

Lines Matching defs:hContext

103     TI_HANDLE hContext;
106 hContext = os_memoryAlloc (hOs, sizeof(TContext));
108 if (!hContext)
114 os_memoryZero (hOs, hContext, (sizeof(TContext)));
116 return (hContext);
127 * \param hContext - The module object
131 TI_STATUS context_Destroy (TI_HANDLE hContext)
133 TContext *pContext = (TContext *)hContext;
152 * \param hContext - The queue object
158 void context_Init (TI_HANDLE hContext, TI_HANDLE hOs, TI_HANDLE hReport)
160 TContext *pContext = (TContext *)hContext;
178 * \param hContext - The module's object
183 TI_STATUS context_SetDefaults (TI_HANDLE hContext, TContextInitParams *pContextInitParams)
185 TContext *pContext = (TContext *)hContext;
204 * \param hContext - The module handle
211 TI_UINT32 context_RegisterClient (TI_HANDLE hContext,
218 TContext *pContext = (TContext *)hContext;
267 * \param hContext - The module handle
272 void context_RequestSchedule (TI_HANDLE hContext, TI_UINT32 uClientId)
274 TContext *pContext = (TContext *)hContext;
298 context_DriverTask(hContext);
313 * \param hContext - The module handle
317 void context_DriverTask (TI_HANDLE hContext)
319 TContext *pContext = (TContext *)hContext;
360 * \param hContext - The module handle
365 void context_EnableClient (TI_HANDLE hContext, TI_UINT32 uClientId)
367 TContext *pContext = (TContext *)hContext;
398 context_DriverTask(hContext);
404 void context_DisableClient (TI_HANDLE hContext, TI_UINT32 uClientId)
406 TContext *pContext = (TContext *)hContext;
430 * \param hContext - The module handle
434 void context_EnterCriticalSection (TI_HANDLE hContext)
436 TContext *pContext = (TContext *)hContext;
444 void context_LeaveCriticalSection (TI_HANDLE hContext)
446 TContext *pContext = (TContext *)hContext;
462 * \param hContext - The queue object
469 void context_Print(TI_HANDLE hContext)
472 TContext *pContext = (TContext *)hContext;