Home | History | Annotate | Download | only in open

Lines Matching refs:hAuth

96 *  I   - hAuth - Association SM context  \n
113 TI_STATUS openAuth_Config(TI_HANDLE hAuth, TI_HANDLE hOs)
146 if (hAuth == NULL)
151 pHandle = (auth_t*)hAuth;
188 TI_STATUS auth_osSMEvent(UINT8 *currentState, UINT8 event, TI_HANDLE hAuth)
190 auth_t *pAuth = (auth_t *)hAuth;
222 * I - hAuth - Association SM context \n
230 TI_STATUS openAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
236 pHandle = (auth_t*)hAuth;
276 TI_STATUS openAuth_smStartIdle(auth_t *hAuth)
280 status = openAuth_smResetRetry(hAuth);
281 status = openAuth_smSendAuthReq(hAuth);
282 status = openAuth_smStartTimer(hAuth);
283 status = openAuth_smIncRetry(hAuth);
288 TI_STATUS openAuth_smStopWait(auth_t *hAuth)
292 status = openAuth_smStopTimer(hAuth);
297 TI_STATUS openAuth_smSuccessWait(auth_t *hAuth)
301 status = openAuth_smStopTimer(hAuth);
302 status = openAuth_smReportSuccess(hAuth);
307 TI_STATUS openAuth_smFailureWait(auth_t *hAuth)
311 status = openAuth_smStopTimer(hAuth);
312 status = openAuth_smReportFailure(hAuth);
317 TI_STATUS openAuth_smTimeoutWait(auth_t *hAuth)
321 status = openAuth_smSendAuthReq(hAuth);
322 status = openAuth_smStartTimer(hAuth);
323 status = openAuth_smIncRetry(hAuth);
328 TI_STATUS openAuth_smMaxRetryWait(auth_t *hAuth)
332 rsn_reportAuthFailure(hAuth->hRsn, RSN_AUTH_STATUS_TIMEOUT);
333 status = openAuth_smReportFailure(hAuth);
338 TI_STATUS openAuth_smSendAuthReq(auth_t *hAuth)
342 status = auth_smMsgBuild(hAuth, 1, 0, NULL, 0);
347 TI_STATUS openAuth_smStopAuth(auth_t *hAuth)
352 TI_STATUS openAuth_smActionUnexpected(auth_t *hAuth)
360 TI_STATUS openAuth_smResetRetry(auth_t *hAuth)
362 if (hAuth == NULL)
367 hAuth->retryCount = 0;
372 TI_STATUS openAuth_smIncRetry(auth_t *hAuth)
374 if (hAuth == NULL)
379 hAuth->retryCount++;
384 TI_STATUS openAuth_smReportSuccess(auth_t *hAuth)
388 if (hAuth == NULL)
392 status = mlme_reportAuthStatus(hAuth->hMlme, hAuth->authData.status);
397 TI_STATUS openAuth_smReportFailure(auth_t *hAuth)
401 if (hAuth == NULL)
407 status = mlme_reportAuthStatus(hAuth->hMlme, hAuth->authData.status);
412 TI_STATUS openAuth_smStartTimer(auth_t *hAuth)
414 if (hAuth == NULL)
419 os_timerStart(hAuth->hOs, hAuth->timer, hAuth->timeout, FALSE);
424 TI_STATUS openAuth_smStopTimer(auth_t *hAuth)
426 if (hAuth == NULL)
431 os_timerStop(hAuth->hOs, hAuth->timer);