Searched refs:timer (Results 1 - 19 of 19) sorted by relevance

/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Auth/
H A DauthSm.h83 TI_HANDLE timer; member in struct:__anon634
H A DauthSm.c96 * Allocates memory for authentication timer. \n
133 /* allocate OS timer memory */
134 pHandle->timer = os_timerCreate(hOs, auth_smTimeout, pHandle);
135 if (pHandle->timer == NULL)
179 os_timerDestroy(pHandle->hOs, pHandle->timer);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
H A DmainKeysSm.c110 pHandle->timer = os_timerCreate(hOs, mainKeys_sessionTimeout, pHandle);
111 if (pHandle->timer == NULL)
121 os_timerDestroy(hOs, pHandle->timer);
131 os_timerDestroy(hOs, pHandle->timer);
142 os_timerDestroy(hOs, pHandle->timer);
332 os_timerStop(pMainKeys->hOs, pMainKeys->timer);
333 os_timerDestroy(pMainKeys->hOs, pMainKeys->timer);
670 * Starts unicast & broadcast key SMs and session timer.
697 os_timerStart(pMainKeys->hOs, pMainKeys->timer, pMainKeys->keysTimeout, FALSE);
711 * Stops unicast & broadcast key SMs and session timer
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/QOS/
H A DtrafficAdmControl.c165 /* allocate OS timer AC BE */
166 pTrafficAdmCtrl->timer[QOS_AC_BE] = os_timerCreate(hOs, trafficAdmCtrl_timeoutAcBE, pTrafficAdmCtrl);
167 if (pTrafficAdmCtrl->timer[QOS_AC_BE] == NULL)
173 /* allocate OS timer AC BK */
174 pTrafficAdmCtrl->timer[QOS_AC_BK] = os_timerCreate(hOs, trafficAdmCtrl_timeoutAcBK, pTrafficAdmCtrl);
175 if (pTrafficAdmCtrl->timer[QOS_AC_BK] == NULL)
178 os_timerDestroy(pTrafficAdmCtrl->hOs, pTrafficAdmCtrl->timer[QOS_AC_BE]);
182 /* allocate OS timer AC VI */
183 pTrafficAdmCtrl->timer[QOS_AC_VI] = os_timerCreate(hOs, trafficAdmCtrl_timeoutAcVI, pTrafficAdmCtrl);
184 if (pTrafficAdmCtrl->timer[QOS_AC_V
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/MacServices/src/ScanServer/
H A DScanSrv.h144 TI_HANDLE timer; /**< scan operation timer */ member in struct:__anon527
145 BOOLEAN bTimerRunning; /**< whether the above timer is running */
215 * \brief Finalizes the scan SRV module (releasing memory and timer)
H A DScanSrvSM.c302 /* stop timer */
305 os_timerStop( pScanSRV->hOS, pScanSRV->timer );
374 /* start the timer */
376 os_timerStart( pScanSRV->hOS, pScanSRV->timer,
397 /* send a scan complete event. This will do all necessary clean-up (timer, power manager, notifying scan complete) */
454 * \brief Handles a timer expiry event - starts a recovery process.
484 /* mark that the timer is no longer running */
542 * \brief Handles a FW reset event (one that was detected outside the scan SRV) by stopping the timer.
557 /* if timer is running - stop it */
560 os_timerStop( pScanSRV->hOS, pScanSRV->timer );
[all...]
H A DScanSrv.c76 /* create the timer */
77 pScanSRV->timer = os_timerCreate( hOS, MacServices_scanSRV_scanTimerExpired, pScanSRV );
78 if ( NULL == pScanSRV->timer )
80 WLAN_OS_REPORT( ("ERROR: Failed to create timer for scan SRV module") );
95 * \brief Finalizes the scan SRV module (releasing memory and timer)
104 /* free timer */
105 os_timerStop( pScanSRV->hOS, pScanSRV->timer );
106 os_timerDestroy( pScanSRV->hOS, pScanSRV->timer );
165 os_timerStop( pScanSRV->hOS, pScanSRV->timer );
267 /* send a scan complete event. This will do all necessary clean-up (timer, powe
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Assoc/
H A DAssocSM.h112 TI_HANDLE timer; member in struct:__anon632
H A DassocSM.c143 * Allocates memory for association timer. \n
180 /* allocate OS timer memory */
181 pHandle->timer = os_timerCreate(hOs, assoc_smTimeout, pHandle);
182 if (pHandle->timer == NULL)
226 os_timerDestroy(pHandle->hOs, pHandle->timer);
1148 os_timerStart(pAssoc->hOs, pAssoc->timer, pAssoc->timeout, FALSE);
1160 os_timerStop(pAssoc->hOs, pAssoc->timer);
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
H A Dosapi.c42 #include <linux/timer.h>
284 DESCRIPTION: This function creates and initializes a timer object associated with a
289 RETURN: A handle of the created timer.
292 NOTES: Using the Kernel timer feature, problem is that kernel timers are one-shots.
294 between the callback function and the re-submission of a timer request.
320 init_timer(&tmr->timer);
322 tmr->timer.function = os_timerHandlr;
323 tmr->timer.data = (int)tmr;
339 DESCRIPTION: This function destroy the timer object.
346 abstraction level timer objec
[all...]
H A Dosmemapi.c42 #include <linux/timer.h>
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/QOS/Inc/
H A DtrafficAdmControl.h87 TI_HANDLE timer[MAX_NUM_OF_AC]; member in struct:__anon438
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/inc/
H A DmainKeysSm.h96 TI_HANDLE timer; member in struct:_mainKeys_t
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Auth/open/
H A DopenAuthSm.c419 os_timerStart(hAuth->hOs, hAuth->timer, hAuth->timeout, FALSE);
431 os_timerStop(hAuth->hOs, hAuth->timer);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Auth/shared/
H A DsharedKeyAuthSm.c535 os_timerStart(hAuth->hOs, hAuth->timer, hAuth->timeout, FALSE);
547 os_timerStop(hAuth->hOs, hAuth->timer);
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/inc/
H A Desta_drv.h209 struct timer_list timer; member in struct:timer_obj
265 struct timer_list poll_timer; /* Polling timer. Used only when working without interrupts */
/system/wlan/ti/wilink_6_1/platforms/os/linux/src/
H A Dosmemapi.c45 #include <linux/timer.h>
H A Dosapi.c45 #include <linux/timer.h>
175 DESCRIPTION: This function creates and initializes an OS timer object associated with a
182 RETURN: A handle of the created OS timer.
184 NOTES: 1) The user's callback is called directly from OS timer context when expired.
204 DESCRIPTION: This function destroys the OS timer object.
222 DESCRIPTION: This function start the timer object.
241 DESCRIPTION: This function stop the timer object.
500 Just a place holder for timer expiration handling in other OSs.
501 In Linux, user callback is called directly on OS timer expiry.
503 Arguments: parm - timer objec
[all...]
/system/wlan/ti/wilink_6_1/stad/build/linux/
H A Ddrv_sources.inc80 $(UTILS)/timer.c \

Completed in 783 milliseconds