HomeSort by relevance Sort by last modified time
    Searched refs:hSme (Results 1 - 25 of 30) sorted by null

1 2

  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
smeApi.h 63 TI_STATUS sme_SetParam (TI_HANDLE hSme, paramInfo_t *pParam);
64 TI_STATUS sme_GetParam (TI_HANDLE hSme, paramInfo_t *pParam);
65 void SME_ConnectRequired (TI_HANDLE hSme);
66 void SME_Disconnect (TI_HANDLE hSme);
67 void sme_SetScanResultTable(TI_HANDLE hSme, TI_HANDLE hScanResultTable);
sme.h 68 void sme_SetDefaults (TI_HANDLE hSme, TSmeModifiedInitParams *pModifiedInitParams, TSmeInitParams *pInitParams);
69 void sme_Destroy (TI_HANDLE hSme);
70 void sme_Start (TI_HANDLE hSme);
71 void sme_Stop (TI_HANDLE hSme);
72 void sme_Restart (TI_HANDLE hSme);
73 void sme_ScanResultCB (TI_HANDLE hSme, EScanCncnResultStatus eStatus,
75 void sme_MeansurementScanResult (TI_HANDLE hSme, EScanCncnResultStatus eStatus, TScanFrameInfo* pFrameInfo);
76 void sme_ReportConnStatus (TI_HANDLE hSme, mgmtStatus_e eStatusType, TI_UINT32 uStatusCode);
77 void sme_ReportApConnStatus (TI_HANDLE hSme, mgmtStatus_e eStatusType, TI_UINT32 uStatusCode);
79 void sme_ConnectScanReport (TI_HANDLE hSme, TI_HANDLE *hScanResultTable)
    [all...]
smeSm.c 77 static void smeSm_Start (TI_HANDLE hSme);
78 static void smeSm_Stop (TI_HANDLE hSme);
79 static void smeSm_PreConnect (TI_HANDLE hSme);
80 static void smeSm_Connect (TI_HANDLE hSme);
81 static void smeSm_ConnectSuccess (TI_HANDLE hSme);
82 static void smeSm_Disconnect (TI_HANDLE hSme);
83 static void smeSm_DisconnectDone (TI_HANDLE hSme);
84 static void smeSm_StopScan (TI_HANDLE hSme);
85 static void smeSm_StopConnect (TI_HANDLE hSme);
86 static void smeSm_ConnWhenConnecting (TI_HANDLE hSme);
    [all...]
sme.c 112 TSme *pSme = pStadHandles->hSme;
141 * \param hSme - handle to the SME object
146 void sme_SetDefaults (TI_HANDLE hSme, TSmeModifiedInitParams *pModifiedInitParams, TSmeInitParams *pInitParams)
148 TSme *pSme = (TSme*)hSme;
202 scanCncn_RegisterScanResultCB (pSme->hScanCncn, SCAN_SCC_DRIVER, sme_ScanResultCB, hSme);
208 * \param hSme - handle to the SME object
212 void sme_SetScanResultTable(TI_HANDLE hSme, TI_HANDLE hScanResultTable)
214 TSme *pSme = (TSme*)hSme;
229 * \param hSme - handle to the SME object
233 void sme_Destroy (TI_HANDLE hSme)
    [all...]
smeSelect.c 51 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)
74 TSme *pSme = (TSme*)hSme;
125 if (TI_FALSE == sme_SelectSsidMatch (hSme, &(pCurrentSite->ssid), &(pSme->tSsid), pSme->eSsidType))
167 if (TI_FALSE == sme_SelectWscMatch (hSme, pCurrentSite, &bWscPbAbort, &pWscPbApFound))
191 if (TI_FALSE == sme_SelectRsnMatch (hSme, pCurrentSite))
267 * \param hSme - handle to the SME objec
    [all...]
smePrivate.h 101 TSiteEntry *sme_Select (TI_HANDLE hSme);
admCtrl.h 202 TI_HANDLE hSme;
apConn.c 209 TI_HANDLE hSme;
475 pAPConnection->hSme = pStadHandles->hSme;
    [all...]
  /hardware/ti/wlan/wl1271/Test/
smeDebug.c 45 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)
94 sme_dbgPrintObject( hSme );
98 sme_printStats( hSme );
102 sme_resetStats( hSme );
106 sme_printBssidList( hSme );
    [all...]
debug.c 234 smeDebugFunction( pStadHandles->hSme, functionNumber % 100, pParam );
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
SoftGemini.h 71 TI_HANDLE hSme;
measurementMgr.h 153 TI_HANDLE hSme;
SoftGemini.c 225 pSoftGemini->hSme = pStadHandles->hSme;
    [all...]
measurementMgr.c 163 pMeasurementMgr->hSme = pStadHandles->hSme;
893 sme_MeansurementScanResult (pMeasurementMgr->hSme, SCAN_CRS_RECEIVED_FRAME, &tScanFrameInfo);
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
ScanCncnPrivate.h 71 TI_HANDLE hSme;
StaCap.h 55 TI_HANDLE hSme;
StaCap.c 120 pStaCap->hSme = pStadHandles->hSme;
143 sme_GetParam (pStaCap->hSme, &tParam);
AssocSM.h 126 TI_HANDLE hSme;
currBss.h 131 TI_HANDLE hSme;
ScanCncn.c 190 pScanCncn->hSme = pStadHandles->hSme;
276 sme_SetScanResultTable(pScanCncn->hSme, pScanCncn->hScanResultTable);
373 sme_GetParam (pScanCncn->hSme, pParam);
    [all...]
assocSM.c 288 pHandle->hSme = pStadHandles->hSme;
    [all...]
currBss.c 231 pCurrBSS->hSme = pStadHandles->hSme;
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Ctrl_Interface/
DrvMainModules.h 49 TI_HANDLE hSme;
CmdDispatcher.c 93 TI_HANDLE hSme;
191 pCmdDispatch->hSme = pStadHandles->hSme;
300 pCmdDispatch->paramAccessTable[GET_PARAM_MODULE_NUMBER(SME_MODULE_PARAM) - 1].handle = pCmdDispatch->hSme;
DrvMain.c 324 pDrvMain->tStadHandles.hSme = sme_Create (hOs);
325 if (pDrvMain->tStadHandles.hSme == NULL)
584 if (pDrvMain->tStadHandles.hSme != NULL)
586 sme_Destroy (pDrvMain->tStadHandles.hSme);
894 sme_SetDefaults (pDrvMain->tStadHandles.hSme, &pInitTable->tSmeModifiedInitParams, &pInitTable->tSmeInitParams);
    [all...]

Completed in 560 milliseconds

1 2