Searched refs:currentState (Results 1 - 25 of 63) sorted by relevance

123

/hardware/ti/wlan/wl1271/utils/
H A Dfsm.c235 * I/O - currentState - current state of the SM \n
246 TI_UINT8 *currentState,
260 if ((*currentState >= pFsm->ActiveNoOfStates) || (event >= pFsm->ActiveNoOfEvents))
265 oldState = *currentState;
267 *currentState = pFsm->stateEventMatrix[(*currentState * pFsm->ActiveNoOfEvents) + event].nextState;
291 * I - currentState - current state of the SM \n
302 TI_UINT8 currentState,
308 if ((currentState < pFsm->ActiveNoOfStates) && (event < pFsm->ActiveNoOfEvents))
310 *nextState = pFsm->stateEventMatrix[(currentState * pFs
245 fsm_Event(fsm_stateMachine_t *pFsm, TI_UINT8 *currentState, TI_UINT8 event, void *pData) argument
301 fsm_GetNextState(fsm_stateMachine_t *pFsm, TI_UINT8 currentState, TI_UINT8 event, TI_UINT8 *nextState) argument
[all...]
H A Dfsm.h113 TI_UINT8 *currentState,
118 TI_UINT8 currentState,
/hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
H A DmeasurementMgrSM.h87 TI_STATUS measurementMgrSM_event(TI_UINT8 * currentState, TI_UINT8 event, TI_HANDLE hMeasurementMgr);
H A DmeasurementMgrSM.c268 * @param currentState A point to the member holding the SM's current state.
274 TI_STATUS measurementMgrSM_event(TI_UINT8 * currentState, TI_UINT8 event, TI_HANDLE hMeasurementMgr) argument
281 *currentState, event, &nextState);
290 TRACE3(pMeasurementMgr->hReport, REPORT_SEVERITY_INFORMATION, "measurementMgrSM_event: <currentState = %d, event = %d> --> nextState = %d\n", currentState, event, nextState);
292 status = fsm_Event(pMeasurementMgr->pMeasurementMgrSm, currentState, event, (void *) pMeasurementMgr);
475 return measurementMgrSM_event((TI_UINT8 *) &(pMeasurementMgr->currentState),
491 return measurementMgrSM_event((TI_UINT8 *) &(pMeasurementMgr->currentState),
519 return measurementMgrSM_event((TI_UINT8 *) &(pMeasurementMgr->currentState),
690 return measurementMgrSM_event((TI_UINT8 *) &(pMeasurementMgr->currentState),
[all...]
/hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
H A DconnIbss.h81 TI_STATUS conn_ibssSMEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hConn);
H A DconnInfra.h84 TI_STATUS conn_infraSMEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hConn);
H A DexternalSec.h85 TI_UINT8 currentState; member in struct:externalSec_t
H A DbroadcastKey802_1x.c129 pBroadcastKey->currentState = BCAST_KEY_802_1X_STATE_IDLE;
153 * I/O - currentState - current state in the state machine\n
168 status = fsm_GetNextState(pBroadcastKey->pBcastKeySm, pBroadcastKey->currentState, event, &nextState);
175 TRACE3(pBroadcastKey->hReport, REPORT_SEVERITY_INFORMATION, "STATION_BROADCAST_KEY_SM: <currentState = %d, event = %d> --> nextState = %d\n", pBroadcastKey->currentState, event, nextState);
177 status = fsm_Event(pBroadcastKey->pBcastKeySm, &pBroadcastKey->currentState, event, pData);
H A DbroadcastKeySM.h79 TI_UINT8 currentState; member in struct:_broadcastKey_t
H A DexternalSec.c106 pExtSec->currentState = EXTERNAL_SEC_STATE_IDLE;
262 pExternalSec->currentState,
271 TRACE3(pExternalSec->hReport, REPORT_SEVERITY_INFORMATION, "STATION_EXT_SEC_SM: <currentState = %d, event = %d> --> nextState = %d\n", pExternalSec->currentState, event, nextState);
273 &pExternalSec->currentState,
H A DunicastKey802_1x.c134 pUnicastKey->currentState = UCAST_KEY_802_1X_STATE_IDLE;
158 * I/O - currentState - current state in the state machine\n
173 status = fsm_GetNextState(pUnicastKey->pUcastKeySm, pUnicastKey->currentState, event, &nextState);
180 TRACE3(pUnicastKey->hReport, REPORT_SEVERITY_INFORMATION, "STATION_UNICAST_KEY_802_1x: <currentState = %d, event = %d> --> nextState = %d\n", pUnicastKey->currentState, event, nextState);
182 status = fsm_Event(pUnicastKey->pUcastKeySm, &pUnicastKey->currentState, event, pData);
H A DunicastKeySM.h81 TI_UINT8 currentState; member in struct:_unicastKey_t
H A DmainSecKeysOnly.c139 pMainSec->currentState = MAIN_KO_STATE_IDLE;
179 status = fsm_Event(pMainSec->pMainSecSm, &pMainSec->currentState, MAIN_KO_EVENT_START, pMainSec);
206 status = fsm_Event(pMainSec->pMainSecSm, &pMainSec->currentState, MAIN_KO_EVENT_STOP, pMainSec);
237 status = fsm_Event(pMainSec->pMainSecSm, &pMainSec->currentState, MAIN_KO_EVENT_KEYS_COMPLETE, pMainSec);
393 switch (pMainSec->currentState)
H A DapConn.c167 TI_UINT8 currentState; /**< AP Connection state machine current state */ member in struct:_apConn_t
487 pAPConnection->currentState = AP_CONNECT_STATE_IDLE;
610 apConn_smEvent(&(pAPConnection->currentState), AP_CONNECT_EVENT_FINISHED_OK, pAPConnection);
614 apConn_smEvent(&(pAPConnection->currentState), AP_CONNECT_EVENT_FINISHED_NOT_OK, pAPConnection);
699 if ((pAPConnection->roamingEnabled) && (pAPConnection->currentState != AP_CONNECT_STATE_IDLE))
727 if ((pAPConnection->currentState != AP_CONNECT_STATE_IDLE) && (pAPConnection->currentState != AP_CONNECT_STATE_WAIT_ROAM))
730 apConn_smEvent(&(pAPConnection->currentState), AP_CONNECT_EVENT_STOP, pAPConnection);
747 apConn_smEvent(&(pAPConnection->currentState), AP_CONNECT_EVENT_STOP, pAPConnection);
902 apConn_smEvent(&(pAPConnection->currentState), AP_CONNECT_EVENT_RETAIN_CURRENT_A
[all...]
H A DbroadcastKeyNone.c90 pBroadcastKey->currentState = 0;
/hardware/ti/wlan/wl1271/stad/src/Sta_Management/
H A DopenAuthSm.c158 pHandle->currentState = OPEN_AUTH_SM_STATE_IDLE;
164 TI_STATUS auth_osSMEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hAuth) argument
170 status = fsm_GetNextState(pAuth->pAuthSm, *currentState, event, &nextState);
177 TRACE3( pAuth->hReport, REPORT_SEVERITY_INFORMATION, "auth_osSMEvent: <currentState = %d, event = %d> --> nextState = %d\n", *currentState, event, nextState);
179 status = fsm_Event(pAuth->pAuthSm, currentState, event, (void *)pAuth);
235 status = auth_osSMEvent(&pHandle->currentState, OPEN_AUTH_SM_EVENT_SUCCESS, pHandle);
238 status = auth_osSMEvent(&pHandle->currentState, OPEN_AUTH_SM_EVENT_FAIL, pHandle);
437 return auth_osSMEvent(&pAuth->currentState, OPEN_AUTH_SM_EVENT_MAX_RETRY, pAuth);
440 return auth_osSMEvent(&pAuth->currentState, OPEN_AUTH_SM_EVENT_TIMEOU
[all...]
H A DsharedKeyAuthSm.c172 pHandle->currentState = SHARED_KEY_AUTH_SM_STATE_IDLE;
178 TI_STATUS auth_skSMEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hAuth) argument
184 status = fsm_GetNextState(pAuth->pAuthSm, *currentState, event, &nextState);
191 TRACE3(pAuth->hReport, REPORT_SEVERITY_INFORMATION, "auth_skSMEvent: <currentState = %d, event = %d> --> nextState = %d\n", *currentState, event, nextState);
193 status = fsm_Event(pAuth->pAuthSm, currentState, event, (void *)pAuth);
260 status = auth_skSMEvent(&pHandle->currentState, SHARED_KEY_AUTH_SM_EVENT_SUCCESS_1, hAuth);
266 status = auth_skSMEvent(&pHandle->currentState, SHARED_KEY_AUTH_SM_EVENT_SUCCESS_2, hAuth);
281 status = auth_skSMEvent(&pHandle->currentState, SHARED_KEY_AUTH_SM_EVENT_FAIL_1, hAuth);
285 status = auth_skSMEvent(&pHandle->currentState, SHARED_KEY_AUTH_SM_EVENT_FAIL_
[all...]
H A DauthSm.h75 TI_UINT8 currentState; member in struct:__anon3065
H A DmlmeSm.c229 pHandle->currentState = MLME_SM_STATE_IDLE;
386 status = mlme_smEvent(&pHandle->currentState, MLME_SM_EVENT_START, pHandle);
422 status = mlme_smEvent(&pHandle->currentState, MLME_SM_EVENT_STOP, pHandle);
468 fStatus = mlme_smEvent(&pHandle->currentState, MLME_SM_EVENT_AUTH_SUCCESS, pHandle);
487 fStatus = mlme_smEvent(&pHandle->currentState, MLME_SM_EVENT_AUTH_FAIL, pHandle);
533 fStatus = mlme_smEvent(&pHandle->currentState, MLME_SM_EVENT_ASSOC_SUCCESS, pHandle);
537 fStatus = mlme_smEvent(&pHandle->currentState, MLME_SM_EVENT_ASSOC_FAIL, pHandle);
563 TI_STATUS mlme_smEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hMlme) argument
569 status = fsm_GetNextState(pMlme->pMlmeSm, *currentState, event, &nextState);
577 TRACE3( pMlme->hReport, REPORT_SEVERITY_INFORMATION, "mlme_smEvent: <currentState
[all...]
H A DmlmeSm.h98 TI_UINT8 currentState; member in struct:__anon3084
151 TI_STATUS mlme_smEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hMlme);
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/common/
H A DExynos_OMX_Basecomponent.c108 if (pExynosComponent->currentState == OMX_StateInvalid) {
158 *pState = pExynosComponent->currentState;
173 OMX_STATETYPE currentState = pExynosComponent->currentState; local
182 if (currentState == destState) {
186 if (currentState == OMX_StateInvalid) {
191 if ((currentState == OMX_StateLoaded) && (destState == OMX_StateIdle)) {
197 if (((currentState == OMX_StateIdle) && (destState == OMX_StateLoaded)) ||
198 ((currentState == OMX_StateIdle) && (destState == OMX_StateInvalid)) ||
199 ((currentState
[all...]
/hardware/ti/wlan/wl1271/TWD/MacServices/
H A DMeasurementSrvSM.h130 * \param currentState - the current scan SRV SM state.\n
134 TI_STATUS measurementSRVSM_SMEvent( TI_HANDLE hMeasurementSrv, measurements_SRVSMStates_e* currentState,
H A DScanSrvSM.h128 * \param currentState - the current scan SRV SM state.\n
132 TI_STATUS scanSRVSM_SMEvent( TI_HANDLE hScanSrv, scan_SRVSMStates_e* currentState,
H A DPowerSrvSM.c313 the PowerSrvSM::currentState must be sync with the PowerSrv::desiredPowerModeProfile (POWER_MODE_ACTIVE).
315 pPowerSrvSM->currentState = POWER_SRV_STATE_ACTIVE;
390 status = powerSrvSmSMEvent((TI_UINT8*)&pPowerSrvSM->currentState,
433 return pPowerSrvSM->currentState;
496 switch ( pPowerSrvSM->currentState )
525 pPowerSrvSM->currentState));
701 (TI_UINT8)pPowerSrvSM->currentState,
711 TRACE3( pPowerSrvSM->hReport, REPORT_SEVERITY_INFORMATION, "powerSrvSmSMEvent: <currentState = %d, event = %d> --> nextState = %d\n", *pCurrentState, event, nextState);
H A DPowerSrvSM.h110 PowerSrvSMStates_e currentState; /**< the current state of the state machine. */ member in struct:__anon2580

Completed in 1655 milliseconds

123