Home | History | Annotate | Download | only in Application

Lines Matching refs:pScanParams

4176     TScanParams* pScanParams;
4184 pScanParams = &(pScanMngr->scanParams);
4188 pScanParams = &(pScanMngr->manualScanParams); /* the scan params that were previously saved in the scanMngr_startManual()*/
4191 status = scanCncn_Start1ShotScan(pScanMngr->hScanCncn, eClient, pScanParams);
4508 * \param pScanParams - a pointer to the scan parameters structure.\n
4510 void scanMngrDebugPrintScanCommand( TScanParams* pScanParams )
4514 if ( 0 == pScanParams->numOfChannels )
4520 if ( pScanParams->numOfChannels > SCAN_MAX_NUM_OF_NORMAL_CHANNELS_PER_COMMAND)
4522 WLAN_OS_REPORT(("scanMngrDebugPrintScanCommand. pScanParams->numOfChannels=%d exceeds the limit %d\n",
4523 pScanParams->numOfChannels, SCAN_MAX_NUM_OF_NORMAL_CHANNELS_PER_COMMAND));
4527 WLAN_OS_REPORT(("Scan type: %s, band: %d\n", scanTypeDesc[ pScanParams->scanType ], pScanParams->band));
4529 switch (pScanParams->scanType)
4533 pScanParams->probeReqNumber, pScanParams->probeRequestRate));
4537 WLAN_OS_REPORT(("SSID: %s\n", pScanParams->desiredSsid));
4541 for ( i = 0; i < pScanParams->numOfChannels; i++ )
4543 scanMngrDebugPrintNormalChannelParam( &(pScanParams->channelEntry[ i ].normalChannelEntry));
4549 pScanParams->probeReqNumber, pScanParams->probeRequestRate ));
4553 WLAN_OS_REPORT(("SSID: %s, Tid: %d\n", pScanParams->desiredSsid, pScanParams->Tid));
4557 for ( i = 0; i < pScanParams->numOfChannels; i++ )
4559 scanMngrDebugPrintNormalChannelParam( &(pScanParams->channelEntry[ i ].normalChannelEntry));
4565 pScanParams->SPSScanDuration,
4566 INT64_HIGHER(pScanParams->latestTSFValue), INT64_LOWER(pScanParams->latestTSFValue)));
4570 for ( i = 0; i < pScanParams->numOfChannels; i++ )
4572 scanMngrDebugPrintSPSChannelParam( &(pScanParams->channelEntry[ i ].SPSChannelEntry));
4578 WLAN_OS_REPORT(("Invalid scan type: %d\n", pScanParams->scanType));