HomeSort by relevance Sort by last modified time
    Searched refs:pScanSRV (Results 1 - 3 of 3) sorted by null

  /hardware/ti/wlan/wl1271/TWD/MacServices/
ScanSrvSM.c 75 scanSRV_t* pScanSRV = (scanSRV_t*)hScanSrv;
144 pScanSRV->SMState = SCAN_SRV_STATE_IDLE;
147 return fsm_Config( pScanSRV->SM, (fsm_Matrix_t)smMatrix,
149 (fsm_eventActivation_t)scanSRVSM_SMEvent, pScanSRV->hOS );
166 scanSRV_t *pScanSRV = (scanSRV_t *)hScanSrv;
171 status = fsm_GetNextState( pScanSRV->SM, *(TI_UINT8*)currentState, (TI_UINT8)event, &nextState );
174 TRACE2(pScanSRV->hReport, REPORT_SEVERITY_ERROR, "Failed getting scan SRV next state. state = %d event = %d\n", (TI_UINT8)*currentState,(TI_UINT8)event);
178 TRACE3(pScanSRV->hReport, REPORT_SEVERITY_INFORMATION, "scanSRVSM_SMEvent: <currentState = %d, event = %d> --> nextState = %d\n", *currentState, event, nextState);
181 return fsm_Event( pScanSRV->SM, (TI_UINT8*)currentState, (TI_UINT8)event, hScanSrv );
195 scanSRV_t *pScanSRV = (scanSRV_t*)hScanSrv
    [all...]
ScanSrv.c 63 scanSRV_t *pScanSRV = os_memoryAlloc( hOS, sizeof(scanSRV_t));
64 if ( NULL == pScanSRV )
70 os_memoryZero( pScanSRV->hOS, pScanSRV, sizeof(scanSRV_t));
73 if ( TI_OK != fsm_Create( hOS, &(pScanSRV->SM), SCAN_SRV_NUM_OF_STATES, SCAN_SRV_NUM_OF_EVENTS ))
76 os_memoryFree( hOS, pScanSRV, sizeof(scanSRV_t));
81 pScanSRV->hOS = hOS;
83 return pScanSRV;
96 scanSRV_t *pScanSRV = (scanSRV_t*)hScanSRV;
99 if (pScanSRV->hScanSrvTimer
    [all...]
  /hardware/ti/wlan/wl1271/Test/
HealthMonitorDbg.c 78 scanSRV_t *pScanSRV = (scanSRV_t *)pMacServices->hScanSRV;
89 if (pScanSRV->bTimerRunning)
176 scanSRV_t *pScanSRV = (scanSRV_t *)pMacServices->hScanSRV;
180 tmr_StopTimer (pScanSRV->hScanSrvTimer);
181 pScanSRV->bTimerRunning = TI_FALSE;
184 MacServices_scanSRV_scanTimerExpired ((TI_HANDLE)pScanSRV, TI_FALSE);

Completed in 196 milliseconds