HomeSort by relevance Sort by last modified time
    Searched defs:pAuth (Results 1 - 2 of 2) sorted by null

  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
openAuthSm.c 166 auth_t *pAuth = (auth_t *)hAuth;
170 status = fsm_GetNextState(pAuth->pAuthSm, *currentState, event, &nextState);
173 TRACE0(pAuth->hReport, REPORT_SEVERITY_SM, "State machine error, failed getting next state\n");
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);
246 TI_STATUS openAuth_smStartIdle(auth_t *pAuth)
250 status = openAuth_smResetRetry(pAuth);
253 TRACE0(pAuth->hReport, REPORT_SEVERITY_ERROR, "openAuth_smStartIdle: openAuth_smResetRetry return\n");
257 status = openAuth_smSendAuthReq(pAuth);
    [all...]
sharedKeyAuthSm.c 180 auth_t *pAuth = (auth_t *)hAuth;
184 status = fsm_GetNextState(pAuth->pAuthSm, *currentState, event, &nextState);
187 TRACE0(pAuth->hReport, REPORT_SEVERITY_SM, "State machine error, failed getting next state\n");
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);
519 TI_STATUS sharedKey_Timeout(auth_t *pAuth)
521 if (pAuth->retryCount >= pAuth->maxCount)
523 pAuth->authData.status = STATUS_PACKET_REJ_TIMEOUT
    [all...]

Completed in 33 milliseconds