Home | History | Annotate | Download | only in Application

Lines Matching refs:BSSEntryIndex

883     TI_UINT8 BSSEntryIndex;
898 for ( BSSEntryIndex = 0; BSSEntryIndex < pScanMngr->BSSList.numOfEntries; )
901 if ( pScanMngr->BSSList.scanBSSList[ BSSEntryIndex ].trackFailCount >
908 TRACE7( pScanMngr->hReport, REPORT_SEVERITY_INFORMATION, "Aging: removing BSSID %2x:%2x:%2x:%2x:%2x:%2x from index: %d.\n", pScanMngr->BSSList.BSSList[ BSSEntryIndex ].BSSID[ 0 ], pScanMngr->BSSList.BSSList[ BSSEntryIndex ].BSSID[ 1 ], pScanMngr->BSSList.BSSList[ BSSEntryIndex ].BSSID[ 2 ], pScanMngr->BSSList.BSSList[ BSSEntryIndex ].BSSID[ 3 ], pScanMngr->BSSList.BSSList[ BSSEntryIndex ].BSSID[ 4 ], pScanMngr->BSSList.BSSList[ BSSEntryIndex ].BSSID[ 5 ], pScanMngr->BSSList.numOfEntries);
910 scanMngrRemoveBSSListEntry( hScanMngr, BSSEntryIndex );
914 BSSEntryIndex++;
2622 * \param BSSEntryIndex - index of the entry to remove.\n
2624 void scanMngrRemoveBSSListEntry( TI_HANDLE hScanMngr, TI_UINT8 BSSEntryIndex )
2631 if ( SCAN_MNGR_STAT_MAX_TRACK_FAILURE <= pScanMngr->BSSList.scanBSSList[ BSSEntryIndex ].trackFailCount )
2637 pScanMngr->stats.ConsecutiveTrackFailCountHistogram[ pScanMngr->BSSList.scanBSSList[ BSSEntryIndex ].trackFailCount ]++;
2642 if ( (pScanMngr->BSSList.numOfEntries-1) == BSSEntryIndex )
2652 TRACE2( pScanMngr->hReport, REPORT_SEVERITY_INFORMATION, "Removing entry %d of %d\n", BSSEntryIndex, pScanMngr->BSSList.numOfEntries);
2655 tempResultBuffer = pScanMngr->BSSList.BSSList[ BSSEntryIndex ].pBuffer;
2657 os_memoryCopy( pScanMngr->hOS, &(pScanMngr->BSSList.BSSList[ BSSEntryIndex ]),
2660 os_memoryCopy( pScanMngr->hOS, &(pScanMngr->BSSList.scanBSSList[ BSSEntryIndex ]),
2683 int BSSEntryIndex;
2696 for ( BSSEntryIndex = 0; BSSEntryIndex < pScanMngr->BSSList.numOfEntries; )
2706 (TI_TRUE == pScanMngr->BSSList.BSSList[ BSSEntryIndex ].bNeighborAP) &&
2708 pScanMngr->BSSList.BSSList[ BSSEntryIndex ].band,
2709 &(pScanMngr->BSSList.BSSList[ BSSEntryIndex ].BSSID))))
2712 scanMngrRemoveBSSListEntry( hScanMngr, BSSEntryIndex );
2720 (TI_FALSE == pScanMngr->BSSList.BSSList[ BSSEntryIndex ].bNeighborAP) &&
2722 pScanMngr->BSSList.BSSList[ BSSEntryIndex ].band,
2723 pScanMngr->BSSList.BSSList[ BSSEntryIndex ].channel )))
2726 scanMngrRemoveBSSListEntry( hScanMngr, BSSEntryIndex );
2730 BSSEntryIndex++;