Searched defs:hSme (Results 1 - 16 of 16) sorted by relevance

/system/wlan/ti/wilink_6_1/stad/src/AirLink_Managment/
H A DSoftGemini.h71 TI_HANDLE hSme; member in struct:__anon1590
H A DmeasurementMgr.h151 TI_HANDLE hSme; member in struct:__anon1595
/system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
H A DStaCap.h55 TI_HANDLE hSme; member in struct:__anon1774
H A DScanCncnPrivate.h71 TI_HANDLE hSme; member in struct:__anon1769
H A DAssocSM.h126 TI_HANDLE hSme; member in struct:__anon1759
H A DcurrBss.h134 TI_HANDLE hSme; member in struct:_currBSS_t
/system/wlan/ti/wilink_6_1/Test/
H A DsmeDebug.c45 void sme_dbgPrintObject (TI_HANDLE hSme);
46 void sme_printStats (TI_HANDLE hSme);
47 void sme_resetStats(TI_HANDLE hSme);
48 void sme_printBssidList(TI_HANDLE hSme);
80 * \param hSme - handle to the SME object
85 void smeDebugFunction (TI_HANDLE hSme, TI_UINT32 funcType, void *pParam) argument
94 sme_dbgPrintObject( hSme );
98 sme_printStats( hSme );
102 sme_resetStats( hSme );
106 sme_printBssidList( hSme );
232 sme_printBssidList(TI_HANDLE hSme) argument
265 sme_dbgPrintObject(TI_HANDLE hSme) argument
279 sme_printStats(TI_HANDLE hSme) argument
293 sme_resetStats(TI_HANDLE hSme) argument
[all...]
/system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
H A Dsme.c113 TSme *pSme = pStadHandles->hSme;
142 * \param hSme - handle to the SME object
147 void sme_SetDefaults (TI_HANDLE hSme, TSmeModifiedInitParams *pModifiedInitParams, TSmeInitParams *pInitParams) argument
149 TSme *pSme = (TSme*)hSme;
189 scanCncn_RegisterScanResultCB (pSme->hScanCncn, SCAN_SCC_DRIVER, sme_ScanResultCB, hSme);
198 * \param hSme - handle to the SME object
202 void sme_Destroy (TI_HANDLE hSme) argument
204 TSme *pSme = (TSme*)hSme;
219 os_memoryFree (pSme->hOS, hSme, sizeof (TSme));
229 * \param hSme
233 sme_Start(TI_HANDLE hSme) argument
266 sme_Stop(TI_HANDLE hSme) argument
288 sme_Restart(TI_HANDLE hSme) argument
311 sme_SetParam(TI_HANDLE hSme, paramInfo_t *pParam) argument
468 sme_GetParam(TI_HANDLE hSme, paramInfo_t *pParam) argument
543 sme_ScanResultCB(TI_HANDLE hSme, EScanCncnResultStatus eStatus, TScanFrameInfo* pFrameInfo, TI_UINT16 uSPSStatus) argument
709 sme_AppScanResult(TI_HANDLE hSme, EScanCncnResultStatus eStatus, TScanFrameInfo* pFrameInfo) argument
761 sme_MeansurementScanResult(TI_HANDLE hSme, EScanCncnResultStatus eStatus, TScanFrameInfo* pFrameInfo) argument
811 sme_ReportConnStatus(TI_HANDLE hSme, mgmtStatus_e eStatusType, TI_UINT32 uStatusCode) argument
882 sme_ReportApConnStatus(TI_HANDLE hSme, mgmtStatus_e eStatusType, TI_UINT32 uStatusCode) argument
937 sme_GetSmeScanResultTableHandler(TI_HANDLE hSme, TI_HANDLE *hScanResultTable) argument
953 SME_ConnectRequired(TI_HANDLE hSme) argument
973 SME_Disconnect(TI_HANDLE hSme) argument
[all...]
H A DsmeSelect.c51 static TI_BOOL sme_SelectSsidMatch (TI_HANDLE hSme, TSsid *pSiteSsid, TSsid *pDesiredSsid,
55 static TI_BOOL sme_SelectWscMatch (TI_HANDLE hSme, TSiteEntry *pCurrentSite,
57 static TI_BOOL sme_SelectRsnMatch (TI_HANDLE hSme, TSiteEntry *pCurrentSite);
69 * \param hSme - handle to the SME object
72 TSiteEntry *sme_Select (TI_HANDLE hSme) argument
74 TSme *pSme = (TSme*)hSme;
122 if (TI_FALSE == sme_SelectSsidMatch (hSme, &(pCurrentSite->ssid), &(pSme->tSsid), pSme->eSsidType))
164 if (TI_FALSE == sme_SelectWscMatch (hSme, pCurrentSite, &bWscPbAbort, &pWscPbApFound))
183 if (TI_FALSE == sme_SelectRsnMatch (hSme, pCurrentSite))
242 * \param hSme
249 sme_SelectSsidMatch(TI_HANDLE hSme, TSsid *pSiteSsid, TSsid *pDesiredSsid, ESsidType eDesiredSsidType) argument
341 sme_SelectWscMatch(TI_HANDLE hSme, TSiteEntry *pCurrentSite, TI_BOOL *pbWscPbAbort, TI_BOOL *pbWscPbApFound) argument
388 sme_SelectRsnMatch(TI_HANDLE hSme, TSiteEntry *pCurrentSite) argument
[all...]
H A DsmeSm.c76 static void smeSm_Start (TI_HANDLE hSme);
77 static void smeSm_Stop (TI_HANDLE hSme);
78 static void smeSm_PreConnect (TI_HANDLE hSme);
79 static void smeSm_Connect (TI_HANDLE hSme);
80 static void smeSm_ConnectSuccess (TI_HANDLE hSme);
81 static void smeSm_Disconnect (TI_HANDLE hSme);
82 static void smeSm_DisconnectDone (TI_HANDLE hSme);
83 static void smeSm_StopScan (TI_HANDLE hSme);
84 static void smeSm_StopConnect (TI_HANDLE hSme);
85 static void smeSm_ConnWhenConnecting (TI_HANDLE hSme);
179 smeSm_Start(TI_HANDLE hSme) argument
217 smeSm_Stop(TI_HANDLE hSme) argument
241 smeSm_PreConnect(TI_HANDLE hSme) argument
368 smeSm_Connect(TI_HANDLE hSme) argument
427 smeSm_ConnectSuccess(TI_HANDLE hSme) argument
455 smeSm_Disconnect(TI_HANDLE hSme) argument
490 smeSm_DisconnectDone(TI_HANDLE hSme) argument
527 smeSm_StopScan(TI_HANDLE hSme) argument
544 smeSm_StopConnect(TI_HANDLE hSme) argument
568 smeSm_ConnWhenConnecting(TI_HANDLE hSme) argument
590 smeSm_ActionUnexpected(TI_HANDLE hSme) argument
604 smeSm_NopAction(TI_HANDLE hSme) argument
611 smeSm_CheckStartConditions(TI_HANDLE hSme) argument
640 sme_StartScan(TI_HANDLE hSme) argument
824 sme_updateScanCycles(TI_HANDLE hSme, TI_BOOL bDEnabled, TI_BOOL bCountryValid, TI_BOOL bConstantScan) argument
959 sme_CalculateCyclesNumber(TI_HANDLE hSme, TI_UINT32 uTotalTimeMs) argument
[all...]
H A DadmCtrl.h202 TI_HANDLE hSme; member in struct:_admCtrl_t
H A DapConn.c210 TI_HANDLE hSme; member in struct:_apConn_t
483 pAPConnection->hSme = pStadHandles->hSme;
1276 sme_ReportApConnStatus(pAPConnection->hSme, STATUS_DISCONNECT_DURING_CONNECT, pAPConnection->APDisconnect.uStatusCode);
2384 sme_ReportApConnStatus(pAPConnection->hSme, STATUS_UNSPECIFIED, 0);
2390 sme_ReportApConnStatus(pAPConnection->hSme, mgmtStatus, pAPConnection->APDisconnect.uStatusCode);
2394 sme_ReportApConnStatus(pAPConnection->hSme, STATUS_ROAMING_TRIGGER, (TI_UINT32)pAPConnection->roamReason);
/system/wlan/ti/wilink_6_1/stad/src/Ctrl_Interface/
H A DCmdDispatcher.c93 TI_HANDLE hSme; member in struct:__anon1712
191 pCmdDispatch->hSme = pStadHandles->hSme;
300 pCmdDispatch->paramAccessTable[GET_PARAM_MODULE_NUMBER(SME_MODULE_PARAM) - 1].handle = pCmdDispatch->hSme;
H A DDrvMainModules.h49 TI_HANDLE hSme; member in struct:__anon1718
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/currBss/
H A DcurrBss.c136 TI_HANDLE hSme; member in struct:_currBSS_t
299 pCurrBSS->hSme = hSME;
1177 smeSm_reselect(pCurrBSS->hSme);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/apConn/
H A DapConn.c234 TI_HANDLE hSme; member in struct:_apConn_t
382 * I - hSme - SME context \n
395 TI_HANDLE hSme,
530 pAPConnection->hSme = hSme;
2773 smeSm_reportConnStatus(pAPConnection->hSme, STATUS_UNSPECIFIED, 0);
2779 smeSm_reportConnStatus(pAPConnection->hSme, mgmtStatus, pAPConnection->APDisconnect.uStatusCode);
2783 smeSm_reportConnStatus(pAPConnection->hSme, STATUS_ROAMING_TRIGGER, (UINT32)pAPConnection->roamReason);
391 apConn_config(TI_HANDLE hAPConnection, TI_HANDLE hReport, TI_HANDLE hCurrAP, TI_HANDLE hRoamMng, TI_HANDLE hSme, TI_HANDLE hSiteMgr, TI_HANDLE hExcMngr, TI_HANDLE hConnSm, TI_HANDLE hPrivacy, TI_HANDLE hQos, TI_HANDLE hCtrl, TI_HANDLE hEvHandler, TI_HANDLE hScr, TI_HANDLE hAssoc, TI_HANDLE hRegulatoryDomain, apConnParams_t *pApConnParams) argument

Completed in 179 milliseconds