Searched refs:pParam (Results 51 - 75 of 123) sorted by relevance

12345

/system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
H A Dsme.c307 * \param pParam - pointer to the param to set
311 TI_STATUS sme_SetParam (TI_HANDLE hSme, paramInfo_t *pParam) argument
315 TRACE1(pSme->hReport, REPORT_SEVERITY_INFORMATION , "sme_SetParam: param type is 0x%x\n", pParam->paramType);
317 switch (pParam->paramType)
321 if (pSme->bRadioOn != pParam->content.smeRadioOn)
324 pSme->bRadioOn = pParam->content.smeRadioOn;
341 if ((pSme->tSsid.len != pParam->content.smeDesiredSSID.len) ||
343 &(pParam->content.smeDesiredSSID.str[ 0 ]), pSme->tSsid.len)))
346 os_memoryCopy (pSme->hOS, &(pSme->tSsid.str[ 0 ]), &(pParam->content.smeDesiredSSID.str[ 0 ]), pParam
468 sme_GetParam(TI_HANDLE hSme, paramInfo_t *pParam) argument
[all...]
H A DconnApi.h89 TI_STATUS conn_setParam (TI_HANDLE hConn, paramInfo_t *pParam);
91 TI_STATUS conn_getParam (TI_HANDLE hConn, paramInfo_t *pParam);
H A Dconn.c252 pParam - Pointer to the parameter
260 paramInfo_t *pParam)
264 switch(pParam->paramType)
267 pConn->currentConnType = pParam->content.connType;
268 switch (pParam->content.connType)
278 TRACE1(pConn->hReport, REPORT_SEVERITY_ERROR, "Set connection type, type is not valid, %d\n\n", pParam->content.connType);
283 if ((pParam->content.connSelfTimeout < CONN_SELF_TIMEOUT_MIN) || (pParam->content.connSelfTimeout > CONN_SELF_TIMEOUT_MAX))
285 pConn->timeout = pParam->content.connSelfTimeout;
289 TRACE1(pConn->hReport, REPORT_SEVERITY_ERROR, "Set param, Params is not supported, %d\n\n", pParam
259 conn_setParam(TI_HANDLE hConn, paramInfo_t *pParam) argument
311 conn_getParam(TI_HANDLE hConn, paramInfo_t *pParam) argument
[all...]
/system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
H A DsiteMgr.c581 pParam - Pointer to the parameter
590 paramInfo_t *pParam)
599 switch(pParam->paramType)
602 pConfig = pParam->content.pSiteMgrConfiguration;
628 if (pParam->content.siteMgrDesiredChannel > SITE_MGR_CHANNEL_MAX)
631 if (pSiteMgr->pDesiredParams->siteMgrDesiredChannel != pParam->content.siteMgrDesiredChannel)
632 pSiteMgr->pDesiredParams->siteMgrDesiredChannel = (TI_UINT8)pParam->content.siteMgrDesiredChannel;
636 MAC_COPY (pSiteMgr->pDesiredParams->siteMgrDesiredBSSID, pParam->content.siteMgrDesiredBSSID);
641 TRACE1(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "\nSet new SSID= (len=%d) \n", pParam->content.siteMgrDesiredSSID.len);
643 if (pParam
589 siteMgr_setParam(TI_HANDLE hSiteMgr, paramInfo_t *pParam) argument
971 siteMgr_getParam(TI_HANDLE hSiteMgr, paramInfo_t *pParam) argument
[all...]
H A DScanCncn.c342 paramInfo_t *pParam; local
346 pParam = (paramInfo_t *)os_memoryAlloc(pScanCncn->hOS, sizeof(paramInfo_t));
347 if (!pParam) {
364 pParam->paramType = SME_DESIRED_SSID_ACT_PARAM;
365 sme_GetParam (pScanCncn->hSme, pParam);
368 &(pParam->content.smeDesiredSSID),
372 os_memoryFree(pScanCncn->hOS, pParam, sizeof(paramInfo_t));
1071 paramInfo_t *pParam; local
1075 pParam = (paramInfo_t *)os_memoryAlloc(pScanCncn->hOS, sizeof(paramInfo_t));
1076 if (!pParam) {
[all...]
H A DassocSM.c599 * I/O - pParam - Parameter \n
607 TI_STATUS assoc_getParam(TI_HANDLE hAssoc, paramInfo_t *pParam) argument
611 if ((pHandle == NULL) || (pParam == NULL))
617 switch (pParam->paramType)
620 pParam->content.assocResponseTimeout = pHandle->timeout;
624 pParam->content.siteMgrTiWlanCounters.AssocRejects = pHandle->assocRejectCount;
625 pParam->content.siteMgrTiWlanCounters.AssocTimeouts = pHandle->assocTimeoutCount;
629 pParam->content.assocReqBuffer.buffer = pHandle->assocReqBuffer;
630 pParam->content.assocReqBuffer.bufferSize = pHandle->assocReqLen;
631 pParam
739 assoc_setParam(TI_HANDLE hAssoc, paramInfo_t *pParam) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/sme/smeSm/
H A DsmeSmApi.c635 pParam - Pointer to the parameter
643 paramInfo_t *pParam)
647 switch(pParam->paramType)
650 if (pSmeSm->scanEnabled != pParam->content.smeSMScanEnabled)
652 if ((pParam->content.smeSMScanEnabled == SCAN_ENABLED) &&
659 if ((pParam->content.smeSMScanEnabled == SKIP_NEXT_SCAN) &&
666 pSmeSm->scanEnabled, pParam->content.smeSMScanEnabled));
669 pSmeSm->scanEnabled = pParam->content.smeSMScanEnabled;
675 ("Set param, Params is not supported, %d\n\n", pParam->paramType));
690 pParam
642 smeSm_setParam(TI_HANDLE hSmeSm, paramInfo_t *pParam) argument
697 smeSm_getParam(TI_HANDLE hSmeSm, paramInfo_t *pParam) argument
[all...]
/system/wlan/ti/wilink_6_1/Test/
H A DMibDbg.c155 static void mibDbgModifyCtsToSelf(TI_HANDLE hTWD, void* pParam) argument
160 if (pParam == NULL)
169 mib.aData.CTSToSelfEnable = *(TI_UINT32*)pParam;
207 static void mibDbgSetMaxRxLifetime(TI_HANDLE hTWD, void* pParam) argument
212 if (pParam == NULL)
220 mib.aData.MaxReceiveLifeTime = *(TI_UINT32*)pParam;
247 void MibDebugFunction(TI_HANDLE hTWD ,TI_UINT32 funcType, void* pParam) argument
269 mibDbgModifyCtsToSelf(hTWD, pParam);
275 mibDbgSetMaxRxLifetime(hTWD, pParam);
H A DmeasurementDbg.h67 void measurementDebugFunction(TI_HANDLE hMeasurementMgr, TI_HANDLE hSwitchChannel, TI_HANDLE hRegulatoryDomain, TI_UINT32 funcType, void *pParam);
H A DscrDbg.h99 * \param pParam - parameters for the debug function.\n
101 void scrDebugFunction( TI_HANDLE hScanMngr, TI_UINT32 funcType, void *pParam );
H A DScanMngrDbg.c57 * \param pParam - parameters for the debug function.\n
61 void scanMngrDebugFunction( TI_HANDLE hScanMngr, TI_UINT32 funcType, void *pParam, TI_HANDLE hSiteMgr, TI_HANDLE hCtrlData ) argument
78 scanMngr_startImmediateScan( hScanMngr, (1 == *((TI_INT32*)pParam) ? TI_TRUE : TI_FALSE) );
H A DsiteMgrDebug.h118 void *pParam);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Application/inc/
H A DscanMngrApi.h275 * \param pParam - the param to get.\n
278 TI_STATUS scanMngr_getParam( TI_HANDLE hScanMngr, paramInfo_t *pParam );
287 * \param pParam - the param to set.\n
290 TI_STATUS scanMngr_setParam( TI_HANDLE hScanMngr, paramInfo_t *pParam );
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/AirLink/inc/
H A DmeasurementMgrApi.h84 TI_STATUS measurementMgr_setParam(TI_HANDLE hMeasurementMgr, paramInfo_t * pParam);
86 TI_STATUS measurementMgr_getParam(TI_HANDLE hMeasurementMgr, paramInfo_t * pParam);
H A DrequestHandler.h95 paramInfo_t *pParam);
98 paramInfo_t *pParam);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/SoftGemini/inc/
H A DSoftGeminiApi.h128 pParam - Pointer to the parameter
136 paramInfo_t *pParam);
148 OUTPUT: pParam - Pointer to the parameter
154 paramInfo_t *pParam);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/sme/Inc/
H A DconnApi.h106 paramInfo_t *pParam);
109 paramInfo_t *pParam);
H A DsmeSmApi.h163 paramInfo_t *pParam);
171 paramInfo_t *pParam);
/system/wlan/ti/wilink_6_1/stad/src/AirLink_Managment/
H A DmeasurementMgrApi.h71 TI_STATUS measurementMgr_setParam(TI_HANDLE hMeasurementMgr, paramInfo_t * pParam);
73 TI_STATUS measurementMgr_getParam(TI_HANDLE hMeasurementMgr, paramInfo_t * pParam);
H A DrequestHandler.h95 paramInfo_t *pParam);
98 paramInfo_t *pParam);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/sme/siteMgr/
H A DsiteMgr.c652 pParam - Pointer to the parameter
661 paramInfo_t *pParam)
669 switch(pParam->paramType)
672 pConfig = pParam->content.pSiteMgrConfiguration;
699 if (pParam->content.siteMgrDesiredChannel > SITE_MGR_CHANNEL_MAX)
702 if (pSiteMgr->pDesiredParams->siteMgrDesiredChannel != pParam->content.siteMgrDesiredChannel)
703 pSiteMgr->pDesiredParams->siteMgrDesiredChannel = (UINT8)pParam->content.siteMgrDesiredChannel;
707 os_memoryCopy(pSiteMgr->hOs, (void *)pSiteMgr->pDesiredParams->siteMgrDesiredBSSID.addr, (void *)pParam->content.siteMgrDesiredBSSID.addr, sizeof(macAddress_t));
725 pParam->content.siteMgrDesiredSSID.ssidString,
726 pParam
660 siteMgr_setParam(TI_HANDLE hSiteMgr, paramInfo_t *pParam) argument
1089 siteMgr_getParam(TI_HANDLE hSiteMgr, paramInfo_t *pParam) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/sme/conn/
H A Dconn.c284 pParam - Pointer to the parameter
292 paramInfo_t *pParam)
296 switch(pParam->paramType)
299 pConn->currentConnType = pParam->content.connType;
300 switch (pParam->content.connType)
310 WLAN_REPORT_ERROR(pConn->hReport, CONN_MODULE_LOG, ("Set connection type, type is not valid, %d\n\n", pParam->content.connType));
315 if ((pParam->content.connSelfTimeout < CONN_SELF_TIMEOUT_MIN) || (pParam->content.connSelfTimeout > CONN_SELF_TIMEOUT_MAX))
317 pConn->timeout = pParam->content.connSelfTimeout;
321 WLAN_REPORT_ERROR(pConn->hReport, CONN_MODULE_LOG, ("Set param, Params is not supported, %d\n\n", pParam
291 conn_setParam(TI_HANDLE hConn, paramInfo_t *pParam) argument
343 conn_getParam(TI_HANDLE hConn, paramInfo_t *pParam) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Assoc/
H A DassocSM.c655 * I/O - pParam - Parameter \n
663 TI_STATUS assoc_getParam(TI_HANDLE hAssoc, paramInfo_t *pParam) argument
669 if ((pHandle == NULL) || (pParam == NULL))
675 switch (pParam->paramType)
678 pParam->content.assocResponseTimeout = pHandle->timeout;
682 pParam->content.siteMgrTiWlanCounters.AssocRejects = pHandle->assocRejectCount;
683 pParam->content.siteMgrTiWlanCounters.AssocTimeouts = pHandle->assocTimeoutCount;
687 pParam->content.applicationConfigBuffer.buffer = pHandle->assocRespBuffer;
688 pParam->content.applicationConfigBuffer.bufferSize = pHandle->assocRespLen;
712 os_memoryZero(pHandle->hOs ,&pParam
788 assoc_getParamPartial(TI_HANDLE hAssoc, paramInfoPartial_t *pParam) argument
836 assoc_setParam(TI_HANDLE hAssoc, paramInfo_t *pParam) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/QOS/Inc/
H A DtrafficAdmControl.h119 TI_STATUS trafficAdmCtrl_setParam(TI_HANDLE hTrafficAdmCtrl, paramInfo_t *pParam);
121 TI_STATUS trafficAdmCtrl_getParam(TI_HANDLE hTrafficAdmCtrl, paramInfo_t *pParam);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/ExpInc/
H A DapConnApi.h158 TI_STATUS apConn_setRoamThresholds(TI_HANDLE hAPConnection, roamingMngrThresholdsConfig_t *pParam);
159 TI_STATUS apConn_getRoamThresholds(TI_HANDLE hAPConnection, roamingMngrThresholdsConfig_t *pParam);

Completed in 215 milliseconds

12345