Lines Matching refs:pParam

59  * \param  pParam - the param to set
63 TI_STATUS scanCncnApp_SetParam (TI_HANDLE hScanCncn, paramInfo_t *pParam)
68 TRACE1(pScanCncn->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnApp_SetParam: recevived request of type 0x%x\n", pParam->paramType);
70 switch (pParam->paramType)
87 scanCncn_Start1ShotScan (hScanCncn, SCAN_SCC_APP_ONE_SHOT, pParam->content.pScanParams))
117 scanCncn_StartPeriodicScan (hScanCncn, SCAN_SCC_APP_PERIODIC, pParam->content.pPeriodicScanParams))
168 if(0 != pParam->content.tScanDesiredSSID.len)
170 pScanCncn->tOsScanParams.desiredSsid.len = pParam->content.tScanDesiredSSID.len;
171 os_memoryCopy(pScanCncn->hOS, pScanCncn->tOsScanParams.desiredSsid.str, pParam->content.tScanDesiredSSID.str, pParam->content.tScanDesiredSSID.len);
185 TRACE1(pScanCncn->hReport, REPORT_SEVERITY_ERROR , "scanCncnApp_SetParam: unrecognized param type :%d\n", pParam->paramType);
199 * \param pParam - the param to get
203 TI_STATUS scanCncnApp_GetParam (TI_HANDLE hScanCncn, paramInfo_t *pParam)
207 TRACE1(pScanCncn->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnApp_GetParam: received request of type %d\n", pParam->paramType);
209 switch (pParam->paramType)
213 pParam->paramLength = sizeof(TI_UINT32);
214 pParam->content.uBssidListSize =
220 return scanResultTable_GetBssidList (pScanCncn->hScanResultTable, pParam->content.pBssidList,
221 &pParam->paramLength, TI_FALSE);
225 TRACE1(pScanCncn->hReport, REPORT_SEVERITY_ERROR , "scanCncnApp_GetParam: unrecognized param type :%d\n", pParam->paramType);