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

1 2

  /hardware/ti/wlan/wl1271/TWD/MacServices/
MacServices.h 46 TI_HANDLE hOS;
MacServices.c 53 INPUT: hOS - handle to the OS object.
58 TI_HANDLE MacServices_create( TI_HANDLE hOS)
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) );
PowerSrv.h 121 TI_HANDLE hOS; /**<
MeasurementSrv.h 89 TI_HANDLE hOS; /**< OS object handle */
189 * \param hOS - handle to the OS object.\n
192 TI_HANDLE MacServices_measurementSRV_create( TI_HANDLE hOS );
ScanSrv.h 84 TI_HANDLE hOS; /**< OS object handle */
214 * \param hOS - handle to the OS object.\n
217 TI_HANDLE MacServices_scanSRV_create( TI_HANDLE hOS );
ScanSrv.c 57 * \param hOS - handle to the OS object.\n
60 TI_HANDLE MacServices_scanSRV_create( TI_HANDLE hOS )
63 scanSRV_t *pScanSRV = os_memoryAlloc( hOS, sizeof(scanSRV_t));
70 os_memoryZero( pScanSRV->hOS, pScanSRV, sizeof(scanSRV_t));
73 if ( TI_OK != fsm_Create( hOS, &(pScanSRV->SM), SCAN_SRV_NUM_OF_STATES, SCAN_SRV_NUM_OF_EVENTS ))
76 os_memoryFree( hOS, pScanSRV, sizeof(scanSRV_t));
81 pScanSRV->hOS = hOS;
105 fsm_Unload( pScanSRV->hOS, pScanSRV->SM );
106 os_memoryFree( pScanSRV->hOS, (TI_HANDLE)pScanSRV , sizeof(scanSRV_t))
    [all...]
MeasurementSrv.c 58 * \param hOS - handle to the OS object.\n
61 TI_HANDLE MacServices_measurementSRV_create( TI_HANDLE hOS )
66 pMeasurementSRV = os_memoryAlloc( hOS, sizeof(measurementSRV_t));
74 os_memoryZero( hOS, pMeasurementSRV, sizeof(measurementSRV_t));
77 pMeasurementSRV->hOS = hOS;
80 if ( TI_OK != fsm_Create( hOS, &(pMeasurementSRV->SM), MSR_SRV_NUM_OF_STATES, MSR_SRV_NUM_OF_EVENTS ))
236 fsm_Unload( pMeasurementSRV->hOS, pMeasurementSRV->SM );
253 os_memoryFree( pMeasurementSRV->hOS, (TI_HANDLE)pMeasurementSRV, sizeof(measurementSRV_t));
300 os_memoryCopy (pMeasurementSRV->hOS,
    [all...]
PowerSrvSM.h 100 TI_HANDLE hOS; /**< Handle to the OS object. */
  /hardware/ti/wlan/wl1271/utils/
GenSM.h 70 TI_HANDLE hOS; /**< OS handle */
86 TI_HANDLE genSM_Create (TI_HANDLE hOS);
GenSM.c 55 * \param hOS - handle to the OS object
59 TI_HANDLE genSM_Create (TI_HANDLE hOS)
64 pGenSM = os_memoryAlloc (hOS, sizeof(TGenSM));
68 pGenSM->hOS = hOS;
89 os_memoryFree (pGenSM->hOS, hGenSM, sizeof (TGenSM));
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
PowerMgrKeepAlive.h 43 TI_HANDLE powerMgrKL_create (TI_HANDLE hOS);
ScanCncnPrivate.h 61 TI_HANDLE hOS;
scr.h 105 TI_HANDLE hOS; /**< a handle to the OS object */
scanResultTable.c 52 #define UPDATE_LOCAL_TIMESTAMP(pSite, hOs) pSite->localTimeStamp = os_timeStampMs(hOs);
80 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 */
156 * \param hOS - handle to the OS object
160 TI_HANDLE scanResultTable_Create (TI_HANDLE hOS, TI_UINT32 uEntriesNumber)
165 pScanResultTable = (TScanResultTable*)os_memoryAlloc (hOS, sizeof(TScanResultTable))
    [all...]
PowerMgr.h 85 TI_HANDLE hOS; /**< Handle to the OS object */
ScanCncnSm.c 123 * \param hOS - handle to the OS object
127 TI_HANDLE scanCncnSm_Create (TI_HANDLE hOS)
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));
ScanCncnSm.h 58 TI_HANDLE hOS;
111 TI_HANDLE scanCncnSm_Create (TI_HANDLE hOS);
PowerMgrDbgPrint.c 98 WLAN_OS_REPORT(("%-15s: 0x%x, %-15s:0x%x\n","hOS", pPowerMgr->hOS, "hTWD", pPowerMgr->hTWD));
scrApi.h 173 * \param hOS - handle to the OS object.\n
176 TI_HANDLE scr_create( TI_HANDLE hOS );
ScanCncn.c 75 * \param hOS - handle to the OS object
79 TI_HANDLE scanCncn_Create (TI_HANDLE hOS)
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...]
  /hardware/ti/wlan/wl1271/platforms/os/common/inc/
spi_api.h 64 void* SPI_Open (void* hOS);
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
sme.h 66 TI_HANDLE sme_Create (TI_HANDLE hOS);
smePrivate.h 58 TI_HANDLE hOS;
sme.c 57 * \param hOS - handle to the OS adaptation layer
61 TI_HANDLE sme_Create (TI_HANDLE hOS)
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, &(pSme->tSsid.str[ 0 ]), &(pModifiedInitParams->tDesiredSsid.str[ 0 ]), pSme->tSsid.len)
    [all...]
  /hardware/ti/wlan/wl1271/TWD/Ctrl/Export_Inc/
CmdQueue_api.h 63 * \param hOs - OS module object handle
71 TI_HANDLE cmdQueue_Create (TI_HANDLE hOS);

Completed in 825 milliseconds

1 2