Lines Matching refs:hScr
114 * \param hScr - handle to the SCR object.\n
118 void scrDebugFunction( TI_HANDLE hScr, TI_UINT32 funcType, void *pParam )
127 requestAsClient( hScr, *((EScrClientId*)pParam), SCR_RESOURCE_SERVING_CHANNEL );
131 releaseAsClient( hScr, *((EScrClientId*)pParam), SCR_RESOURCE_SERVING_CHANNEL );
135 requestAsClient( hScr, *((EScrClientId*)pParam), SCR_RESOURCE_PERIODIC_SCAN );
139 releaseAsClient( hScr, *((EScrClientId*)pParam), SCR_RESOURCE_PERIODIC_SCAN );
143 changeGroup( hScr, *((EScrGroupId*)pParam) );
147 printSCRObject( hScr );
151 changeMode(hScr, *((EScrModeId*)pParam));
187 * \param hScr - handle to the SCR object.\n
191 void requestAsClient( TI_HANDLE hScr, EScrClientId client, EScrResourceId eResource )
196 requestStatus = scr_clientRequest( hScr, client, eResource, &pendReason );
208 * \param hScr - handle to the SCR object.\n
212 void releaseAsClient( TI_HANDLE hScr, EScrClientId client, EScrResourceId eResource )
214 scr_clientComplete( hScr, client, eResource );
225 * \param hScr - handle to the SCR object.\n
228 void changeGroup( TI_HANDLE hScr, EScrGroupId group )
230 scr_setGroup( hScr, group );
241 * \param hScr - handle to the SCR object.\n
244 void changeMode( TI_HANDLE hScr, EScrModeId mode )
246 scr_setMode( hScr, mode );
256 * \param hScr - handle to the SCR object.\n
258 void printSCRObject( TI_HANDLE hScr )
261 TScr* pScr = (TScr*)hScr;