Home | History | Annotate | Download | only in Sta_Management

Lines Matching refs:hAuth

94 *  I   - hAuth - Association SM context  \n
111 TI_STATUS openAuth_Config(TI_HANDLE hAuth, TI_HANDLE hOs)
144 if (hAuth == NULL)
149 pHandle = (auth_t*)hAuth;
164 TI_STATUS auth_osSMEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hAuth)
166 auth_t *pAuth = (auth_t *)hAuth;
194 * I - hAuth - Association SM context \n
202 TI_STATUS openAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
208 pHandle = (auth_t*)hAuth;
281 TI_STATUS openAuth_smStopWait(auth_t *hAuth)
285 status = openAuth_smStopTimer(hAuth);
290 TI_STATUS openAuth_smSuccessWait(auth_t *hAuth)
294 status = openAuth_smStopTimer(hAuth);
295 status = openAuth_smReportSuccess(hAuth);
300 TI_STATUS openAuth_smFailureWait(auth_t *hAuth)
304 status = openAuth_smStopTimer(hAuth);
305 status = openAuth_smReportFailure(hAuth);
310 TI_STATUS openAuth_smTimeoutWait(auth_t *hAuth)
314 status = openAuth_smSendAuthReq(hAuth);
315 status = openAuth_smStartTimer(hAuth);
316 status = openAuth_smIncRetry(hAuth);
321 TI_STATUS openAuth_smMaxRetryWait(auth_t *hAuth)
325 rsn_reportAuthFailure(hAuth->hRsn, RSN_AUTH_STATUS_TIMEOUT);
326 status = openAuth_smReportFailure(hAuth);
331 TI_STATUS openAuth_smSendAuthReq(auth_t *hAuth)
335 status = auth_smMsgBuild(hAuth, 1, 0, NULL, 0);
340 TI_STATUS openAuth_smStopAuth(auth_t *hAuth)
345 TI_STATUS openAuth_smActionUnexpected(auth_t *hAuth)
353 TI_STATUS openAuth_smResetRetry(auth_t *hAuth)
355 if (hAuth == NULL)
360 hAuth->retryCount = 0;
365 TI_STATUS openAuth_smIncRetry(auth_t *hAuth)
367 if (hAuth == NULL)
372 hAuth->retryCount++;
377 TI_STATUS openAuth_smReportSuccess(auth_t *hAuth)
381 if (hAuth == NULL)
385 status = mlme_reportAuthStatus(hAuth->hMlme, hAuth->authData.status);
390 TI_STATUS openAuth_smReportFailure(auth_t *hAuth)
394 if (hAuth == NULL)
399 status = mlme_reportAuthStatus(hAuth->hMlme, hAuth->authData.status);
404 TI_STATUS openAuth_smStartTimer(auth_t *hAuth)
406 if (hAuth == NULL)
411 tmr_StartTimer (hAuth->hAuthSmTimer,
413 (TI_HANDLE)hAuth,
414 hAuth->timeout,
420 TI_STATUS openAuth_smStopTimer(auth_t *hAuth)
422 if (hAuth == NULL)
427 tmr_StopTimer (hAuth->hAuthSmTimer);