Searched defs:hOS (Results 1 - 19 of 19) sorted by relevance

/hardware/ti/wlan/wl1271/TWD/MacServices/
H A DMacServices.h46 TI_HANDLE hOS; member in struct:__anon1252
H A DMacServices.c53 INPUT: hOS - handle to the OS object.
58 TI_HANDLE MacServices_create( TI_HANDLE hOS) argument
60 MacServices_t *pMacServices = (MacServices_t*)os_memoryAlloc( hOS, sizeof(MacServices_t) );
72 pMacServices->hScanSRV = MacServices_scanSRV_create(hOS);
80 pMacServices->hMeasurementSRV = MacServices_measurementSRV_create( hOS );
87 pMacServices->hPowerSrv = powerSrv_create(hOS);
95 pMacServices->hOS = hOS;
129 os_memoryFree( pMacServices->hOS, (TI_HANDLE)pMacServices , sizeof(MacServices_t) );
H A DMeasurementSrv.h89 TI_HANDLE hOS; /**< OS object handle */ member in struct:__anon1253
189 * \param hOS - handle to the OS object.\n
192 TI_HANDLE MacServices_measurementSRV_create( TI_HANDLE hOS );
H A DPowerSrv.h121 TI_HANDLE hOS; /**< member in struct:__anon1259
H A DPowerSrvSM.h100 TI_HANDLE hOS; /**< Handle to the OS object. */ member in struct:__anon1262
H A DScanSrv.h84 TI_HANDLE hOS; /**< OS object handle */ member in struct:__anon1263
214 * \param hOS - handle to the OS object.\n
217 TI_HANDLE MacServices_scanSRV_create( TI_HANDLE hOS );
/hardware/ti/wlan/wl1271/stad/src/Sta_Management/
H A Dscr.h105 TI_HANDLE hOS; /**< a handle to the OS object */ member in struct:__anon1781
H A DPowerMgrKeepAlive.c67 * \param hOS - handle to the os object
71 TI_HANDLE powerMgrKL_create (TI_HANDLE hOS) argument
76 pPowerMgrKL = os_memoryAlloc (hOS, sizeof(TPowerMgrKL));
83 pPowerMgrKL->hOs = hOS;
H A DScanCncnPrivate.h61 TI_HANDLE hOS; member in struct:__anon1738
H A DScanCncnSm.c123 * \param hOS - handle to the OS object
127 TI_HANDLE scanCncnSm_Create (TI_HANDLE hOS) argument
132 pScanCncnClient = os_memoryAlloc (hOS, sizeof (TScanCncnClient));
140 pScanCncnClient->hOS = hOS;
143 pScanCncnClient->hGenSM = genSM_Create (hOS);
227 os_memoryFree (pScanCncnClient->hOS, hScanCncnClient, sizeof (TScanCncnClient));
H A DPowerMgr.h85 TI_HANDLE hOS; /**< Handle to the OS object */ member in struct:__anon1730
H A DScanCncnSm.h58 TI_HANDLE hOS; member in struct:__anon1740
111 TI_HANDLE scanCncnSm_Create (TI_HANDLE hOS);
H A DScanCncn.c75 * \param hOS - handle to the OS object
79 TI_HANDLE scanCncn_Create (TI_HANDLE hOS) argument
85 pScanCncn = (TScanCncn*)os_memoryAlloc (hOS, sizeof (TScanCncn));
93 os_memorySet (hOS, (void*)pScanCncn, 0, sizeof (TScanCncn));
96 pScanCncn->hOS = hOS;
101 pScanCncn->pScanClients[ uIndex ] = scanCncnSm_Create (hOS);
122 pScanCncn->hScanResultTable = scanResultTable_Create (hOS, SCAN_CNCN_APP_SCAN_TABLE_ENTRIES);
163 os_memoryFree (pScanCncn->hOS, hScanCncn, sizeof (TScanCncn));
244 os_memoryCopy (pScanCncn->hOS,
[all...]
H A DscanResultTable.c80 os_memoryCopy(pScanResultTable->hOS, (void *)(pSite)->pRsnIe[index].rsnIeData, (void *)pTempRsnIe->rsnIeData, pTempRsnIe->hdr[1]);\
86 #define UPDATE_BEACON_TIMESTAMP(pScanResultTable, pSite, pFrame) os_memoryCopy(pScanResultTable->hOS, pSite->tsfTimeStamp, (void *)(pFrame)->parsedIEs->content.iePacket.timestamp, TIME_STAMP_LEN)
109 os_memoryCopy (pScanResultTable->hOS, pBuffer, pFrame->buffer, pFrame->bufferLength); \
118 os_memoryCopy(pScanResultTable->hOS, \
129 TI_HANDLE hOS; /**< Handle to the OS object */ member in struct:__anon1775
156 * \param hOS - handle to the OS object
160 TI_HANDLE scanResultTable_Create (TI_HANDLE hOS, TI_UINT32 uEntriesNumber) argument
165 pScanResultTable = (TScanResultTable*)os_memoryAlloc (hOS, sizeof(TScanResultTable));
174 pScanResultTable->hOS = hOS;
[all...]
/hardware/ti/wlan/wl1271/utils/
H A DGenSM.c55 * \param hOS - handle to the OS object
59 TI_HANDLE genSM_Create (TI_HANDLE hOS) argument
64 pGenSM = os_memoryAlloc (hOS, sizeof(TGenSM));
68 pGenSM->hOS = hOS;
89 os_memoryFree (pGenSM->hOS, hGenSM, sizeof (TGenSM));
H A DGenSM.h70 TI_HANDLE hOS; /**< OS handle */ member in struct:__anon1877
86 TI_HANDLE genSM_Create (TI_HANDLE hOS);
/hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
H A Dsme.c57 * \param hOS - handle to the OS adaptation layer
61 TI_HANDLE sme_Create (TI_HANDLE hOS) argument
66 pSme = (TSme*)os_memoryAlloc (hOS, sizeof (TSme));
74 os_memoryZero (hOS, (void*)pSme, sizeof (TSme));
77 pSme->hOS = hOS;
80 pSme->hSmeSm = genSM_Create (hOS);
89 pSme->hSmeScanResultTable = scanResultTable_Create (hOS, SME_SCAN_TABLE_ENTRIES);
151 os_memoryCopy (pSme->hOS, &(pSme->tInitParams), pInitParams, sizeof (TSmeInitParams));
174 os_memoryCopy (pSme->hOS,
[all...]
H A DsmePrivate.h58 TI_HANDLE hOS; member in struct:__anon1674
/hardware/ti/wlan/wl1271/stad/src/Application/
H A DscanMngr.h287 TI_HANDLE hOS; /**< handle to the OS object */ member in struct:__anon1596

Completed in 90 milliseconds