Searched refs:hOs (Results 1 - 25 of 411) sorted by relevance

1234567891011>>

/system/wlan/ti/wilink_6_1/utils/
H A Dreport.c54 TI_HANDLE report_Create (TI_HANDLE hOs) argument
58 pReport = os_memoryAlloc(hOs, sizeof(TReport));
64 pReport->hOs = hOs;
66 os_memoryZero(hOs, pReport->aSeverityTable, sizeof(pReport->aSeverityTable));
67 os_memoryZero(hOs, pReport->aFileEnable, sizeof(pReport->aFileEnable));
74 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_0 ]), "timer " , sizeof("timer "));
75 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_1 ]), "measurementMgr " , sizeof("measurementMgr "));
76 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_2 ]), "measurementMgrSM " , sizeof("measurementMgrSM "));
77 os_memoryCopy(hOs, (voi
[all...]
H A Dstack.c70 TI_HANDLE hOs,
77 pStack->hOs = hOs;
90 pStack->pBuf = _os_memoryAlloc (hOs, pStack->uDep);
114 _os_memoryFree (pStack->hOs, pStack->pBuf, pStack->uDep);
133 pStack->fCpy (pStack->hOs, (unsigned char*)pStack->pBuf + pStack->uPtr, pVal, pStack->uElemSize);
157 pStack->fCpy (pStack->hOs, pVal, (unsigned char*)pStack->pBuf + pStack->uPtr, pStack->uElemSize);
67 stackInit( Stack_t *pStack, TI_HANDLE hOs, unsigned uElemSize, unsigned uDep, void *pBuf, void (*fCpy) (TI_HANDLE, void*, void*, unsigned) ) argument
H A Dfsm.c91 TI_STATUS fsm_Create(TI_HANDLE hOs, argument
103 *pFsm = (fsm_stateMachine_t *)os_memoryAlloc(hOs, sizeof(fsm_stateMachine_t));
108 os_memoryZero(hOs, (*pFsm), sizeof(fsm_stateMachine_t));
111 (*pFsm)->stateEventMatrix = (fsm_Matrix_t)os_memoryAlloc(hOs, MaxNoOfStates * MaxNoOfEvents * sizeof(fsm_actionCell_t));
114 os_memoryFree(hOs, *pFsm, sizeof(fsm_stateMachine_t));
117 os_memoryZero(hOs, (*pFsm)->stateEventMatrix,
148 TI_STATUS fsm_Unload(TI_HANDLE hOs, argument
160 os_memoryFree(hOs, pFsm->stateEventMatrix,
165 os_memoryFree(hOs, pFsm, sizeof(fsm_stateMachine_t));
198 TI_HANDLE hOs)
193 fsm_Config(fsm_stateMachine_t *pFsm, fsm_Matrix_t pMatrix, TI_UINT8 ActiveNoOfStates, TI_UINT8 ActiveNoOfEvents, fsm_eventActivation_t transFunc, TI_HANDLE hOs) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
H A DbroadcastKeySM.c84 broadcastKey_t* broadcastKey_create(TI_HANDLE hOs) argument
90 pBroadcastKey = (broadcastKey_t*)os_memoryAlloc(hOs, sizeof(broadcastKey_t));
96 os_memoryZero(hOs, pBroadcastKey, sizeof(broadcastKey_t));
99 status = fsm_Create(hOs, &pBroadcastKey->pBcastKeySm, BCAST_KEY_MAX_NUM_STATES, BCAST_KEY_MAX_NUM_EVENTS);
102 os_memoryFree(hOs, pBroadcastKey, sizeof(broadcastKey_t));
106 pBroadcastKey->pKeyDerive = keyDerive_create(hOs);
109 fsm_Unload(hOs, pBroadcastKey->pBcastKeySm);
110 os_memoryFree(hOs, pBroadcastKey, sizeof(broadcastKey_t));
114 pBroadcastKey->hOs = hOs;
177 broadcastKey_config(struct _broadcastKey_t *pBroadcastKey, rsn_paeConfig_t *pPaeConfig, struct _mainKeys_t *pParent, TI_HANDLE hReport, TI_HANDLE hOs) argument
[all...]
H A DunicastKeySM.c82 unicastKey_t* unicastKey_create(TI_HANDLE hOs) argument
88 pUnicastKey = (unicastKey_t*)os_memoryAlloc(hOs, sizeof(unicastKey_t));
94 os_memoryZero(hOs, pUnicastKey, sizeof(unicastKey_t));
97 status = fsm_Create(hOs, &pUnicastKey->pUcastKeySm, UCAST_KEY_MAX_NUM_STATES, UCAST_KEY_MAX_NUM_EVENTS);
100 os_memoryFree(hOs, pUnicastKey, sizeof(unicastKey_t));
104 pUnicastKey->pKeyDerive = keyDerive_create(hOs);
107 fsm_Unload(hOs, pUnicastKey->pUcastKeySm);
108 os_memoryFree(hOs, pUnicastKey, sizeof(unicastKey_t));
112 pUnicastKey->hOs = hOs;
175 unicastKey_config(struct _unicastKey_t *pUnicastKey, rsn_paeConfig_t *pPaeConfig, struct _mainKeys_t *pParent, TI_HANDLE hReport, TI_HANDLE hOs) argument
[all...]
H A DkeyDerive.c79 keyDerive_t* keyDerive_create(TI_HANDLE hOs) argument
84 pKeyDerive = (keyDerive_t*)os_memoryAlloc(hOs, sizeof(keyDerive_t));
90 os_memoryZero(hOs, pKeyDerive, sizeof(keyDerive_t));
92 pKeyDerive->hOs = hOs;
118 os_memoryFree(pKeyDerive->hOs, pKeyDerive, sizeof(keyDerive_t));
145 TI_HANDLE hOs)
151 pKeyDerive->hOs = hOs;
141 keyDerive_config(struct _keyDerive_t *pKeyDerive, cipherSuite_e cipher, struct _mainKeys_t *pMainKeys, TI_HANDLE hReport, TI_HANDLE hOs) argument
H A DkeyParser.c77 keyParser_t* keyParser_create(TI_HANDLE hOs) argument
82 pKeyParser = (keyParser_t*)os_memoryCAlloc(hOs, 1, sizeof(keyParser_t));
88 pKeyParser->hOs = hOs;
114 os_memoryFree(pKeyParser->hOs, pKeyParser, sizeof(keyParser_t));
143 TI_HANDLE hOs,
153 pKeyParser->hOs = hOs;
137 keyParser_config(struct _keyParser_t *pKeyParser, rsn_paeConfig_t *pPaeConfig, struct _unicastKey_t *pUcastKey, struct _broadcastKey_t *pBcastKey, struct _mainKeys_t *pParent, TI_HANDLE hReport, TI_HANDLE hOs, TI_HANDLE hCtrlData) argument
H A DmainSecSm.c108 * I - hOs - OS handle for OS operations.
116 mainSec_t* mainSec_create(TI_HANDLE hOs) argument
122 pHandle = (mainSec_t*)os_memoryAlloc(hOs, sizeof(mainSec_t));
128 os_memoryZero(hOs, pHandle, sizeof(mainSec_t));
131 status = fsm_Create(hOs, &pHandle->pMainSecSm, MAIN_SEC_MAX_NUM_STATES, MAIN_SEC_MAX_NUM_EVENTS);
134 os_memoryFree(hOs, pHandle, sizeof(mainSec_t));
138 pHandle->pMainKeys = mainKeys_create(hOs);
141 fsm_Unload(hOs, pHandle->pMainSecSm);
142 os_memoryFree(hOs, pHandle, sizeof(mainSec_t));
149 pHandle->hOs
172 mainSec_config(mainSec_t *pMainSec, mainSecInitData_t *pInitData, void *pParent, TI_HANDLE hReport, TI_HANDLE hOs, TI_HANDLE hCtrlData, TI_HANDLE hEvHandler, TI_HANDLE hConn, TI_HANDLE hHalCtrl ) argument
[all...]
H A DkeyDeriveTkip.c130 os_memoryCopy(pKeyDerive->hOs, (void *)key.encKey, (void *)keyMaterialTkip->encKey, KEY_DERIVE_TKIP_ENC_LEN);
133 os_memoryCopy(pKeyDerive->hOs, (void *)key.micTxKey, (void *)keyMaterialTkip->micRxKey, KEY_DERIVE_TKIP_MIC_LEN);
135 os_memoryCopy(pKeyDerive->hOs, (void *)key.micRxKey, (void *)keyMaterialTkip->micTxKey, KEY_DERIVE_TKIP_MIC_LEN);
139 os_memoryCopy(pKeyDerive->hOs, (void *)key.micRxKey, (void *)keyMaterialTkip->micRxKey, KEY_DERIVE_TKIP_MIC_LEN);
141 os_memoryCopy(pKeyDerive->hOs, (void *)key.micTxKey, (void *)keyMaterialTkip->micTxKey, KEY_DERIVE_TKIP_MIC_LEN);
145 os_memoryCopy(pKeyDerive->hOs, (void *)key.macAddress.addr, (void *)keyMaterialTkip->macAddress, MAC_ADDR_LEN);
147 os_memoryCopy(pKeyDerive->hOs, (void *)key.keyRsc, (void *)keyMaterialTkip->keyRSC, KEY_RSC_LEN);
153 os_memoryCopy(pKeyDerive->hOs, &pKeyDerive->key, pEncodedKey, sizeof(encodedKeyMaterial_t));
182 os_memoryZero(pKeyDerive->hOs, &key, sizeof(securityKeys_t));
186 os_memoryCopy(pKeyDerive->hOs, (voi
[all...]
/system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
H A DbroadcastKeySM.c83 broadcastKey_t* broadcastKey_create(TI_HANDLE hOs) argument
89 pBroadcastKey = (broadcastKey_t*)os_memoryAlloc(hOs, sizeof(broadcastKey_t));
95 os_memoryZero(hOs, pBroadcastKey, sizeof(broadcastKey_t));
98 status = fsm_Create(hOs, &pBroadcastKey->pBcastKeySm, BCAST_KEY_MAX_NUM_STATES, BCAST_KEY_MAX_NUM_EVENTS);
101 os_memoryFree(hOs, pBroadcastKey, sizeof(broadcastKey_t));
105 pBroadcastKey->pKeyDerive = keyDerive_create(hOs);
108 fsm_Unload(hOs, pBroadcastKey->pBcastKeySm);
109 os_memoryFree(hOs, pBroadcastKey, sizeof(broadcastKey_t));
113 pBroadcastKey->hOs = hOs;
179 broadcastKey_config(struct _broadcastKey_t *pBroadcastKey, TRsnPaeConfig *pPaeConfig, struct _mainKeys_t *pParent, TI_HANDLE hReport, TI_HANDLE hOs) argument
[all...]
H A DunicastKeySM.c81 unicastKey_t* unicastKey_create(TI_HANDLE hOs) argument
87 pUnicastKey = (unicastKey_t*)os_memoryAlloc(hOs, sizeof(unicastKey_t));
93 os_memoryZero(hOs, pUnicastKey, sizeof(unicastKey_t));
96 status = fsm_Create(hOs, &pUnicastKey->pUcastKeySm, UCAST_KEY_MAX_NUM_STATES, UCAST_KEY_MAX_NUM_EVENTS);
99 os_memoryFree(hOs, pUnicastKey, sizeof(unicastKey_t));
103 pUnicastKey->pKeyDerive = keyDerive_create(hOs);
106 fsm_Unload(hOs, pUnicastKey->pUcastKeySm);
107 os_memoryFree(hOs, pUnicastKey, sizeof(unicastKey_t));
111 pUnicastKey->hOs = hOs;
176 unicastKey_config(struct _unicastKey_t *pUnicastKey, TRsnPaeConfig *pPaeConfig, struct _mainKeys_t *pParent, TI_HANDLE hReport, TI_HANDLE hOs) argument
[all...]
H A DkeyDerive.c78 keyDerive_t* keyDerive_create(TI_HANDLE hOs) argument
83 pKeyDerive = (keyDerive_t*)os_memoryAlloc(hOs, sizeof(keyDerive_t));
89 os_memoryZero(hOs, pKeyDerive, sizeof(keyDerive_t));
91 pKeyDerive->hOs = hOs;
117 os_memoryFree(pKeyDerive->hOs, pKeyDerive, sizeof(keyDerive_t));
144 TI_HANDLE hOs)
150 pKeyDerive->hOs = hOs;
140 keyDerive_config(struct _keyDerive_t *pKeyDerive, ECipherSuite cipher, struct _mainKeys_t *pMainKeys, TI_HANDLE hReport, TI_HANDLE hOs) argument
H A DkeyParser.c76 keyParser_t* keyParser_create(TI_HANDLE hOs) argument
81 pKeyParser = (keyParser_t*)os_memoryCAlloc(hOs, 1, sizeof(keyParser_t));
87 pKeyParser->hOs = hOs;
113 os_memoryFree(pKeyParser->hOs, pKeyParser, sizeof(keyParser_t));
142 TI_HANDLE hOs,
152 pKeyParser->hOs = hOs;
136 keyParser_config(struct _keyParser_t *pKeyParser, TRsnPaeConfig *pPaeConfig, struct _unicastKey_t *pUcastKey, struct _broadcastKey_t *pBcastKey, struct _mainKeys_t *pParent, TI_HANDLE hReport, TI_HANDLE hOs, TI_HANDLE hCtrlData) argument
H A DkeyDerive.h76 TI_HANDLE hOs; member in struct:_keyDerive_t
88 keyDerive_t* keyDerive_create(TI_HANDLE hOs);
96 TI_HANDLE hOs);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
H A Dreport.c62 INPUT: hOs - Handle to OS
70 TI_HANDLE report_create(TI_HANDLE hOs) argument
74 pReport = os_memoryAlloc(hOs, sizeof(report_t));
78 pReport->hOs = hOs;
94 hOs - OS handle
102 TI_STATUS report_config(TI_HANDLE hReport, TI_HANDLE hOs, reportInitParams_t * init_params) argument
106 pReport->hOs = hOs;
111 os_memoryCopy(hOs, (voi
[all...]
H A Dfsm.c92 TI_STATUS fsm_Create(TI_HANDLE hOs, argument
104 *pFsm = (fsm_stateMachine_t *)os_memoryAlloc(hOs, sizeof(fsm_stateMachine_t));
109 os_memoryZero(hOs, (*pFsm), sizeof(fsm_stateMachine_t)); /* Dm: Fix */
112 (*pFsm)->stateEventMatrix = (fsm_Matrix_t)os_memoryAlloc(hOs, MaxNoOfStates * MaxNoOfEvents * sizeof(fsm_actionCell_t));
115 os_memoryFree(hOs, *pFsm, sizeof(fsm_stateMachine_t));
118 os_memoryZero(hOs, (*pFsm)->stateEventMatrix,
149 TI_STATUS fsm_Unload(TI_HANDLE hOs, argument
161 os_memoryFree(hOs, pFsm->stateEventMatrix,
166 os_memoryFree(hOs, pFsm, sizeof(fsm_stateMachine_t));
199 TI_HANDLE hOs)
194 fsm_Config(fsm_stateMachine_t *pFsm, fsm_Matrix_t pMatrix, UINT8 ActiveNoOfStates, UINT8 ActiveNoOfEvents, fsm_eventActivation_t transFunc, TI_HANDLE hOs) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/4X/
H A DConcatenator.h55 TI_HANDLE hOs; member in struct:__anon550
63 concatenator_t* concat_create(TI_HANDLE hOs);
66 TI_HANDLE hOs,
H A DDeConcatenator.h52 TI_HANDLE hOs; member in struct:__anon551
58 deConcatenator_t* deConcat_create(TI_HANDLE hOs);
61 TI_HANDLE hOs,
/system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/Data_Srv/Tx_Ctrl_Blk/
H A DtxCtrlBlk.h56 TI_HANDLE hOs; member in struct:__anon468
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/TrafficMonitor/
H A DGeneralUtil.h66 TI_HANDLE hOs; member in struct:__anon576
76 TI_HANDLE hOs; member in struct:__anon577
/system/wlan/ti/wilink_6_1/stad/src/Data_link/
H A DGeneralUtil.h65 TI_HANDLE hOs; member in struct:__anon1727
75 TI_HANDLE hOs; member in struct:__anon1728
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/inc/
H A DkeyDerive.h77 TI_HANDLE hOs; member in struct:_keyDerive_t
89 keyDerive_t* keyDerive_create(TI_HANDLE hOs);
97 TI_HANDLE hOs);
/system/wlan/ti/wilink_6_1/platforms/os/common/inc/
H A DRxBuf.h90 * \param hOs - OS module object handle
100 BUF* RxBufAlloc (TI_HANDLE hOs, TI_UINT32 len, PacketClassTag_e ePacketClassTag);
105 * \param hOs - OS module object handle
114 void RxBufFree (TI_HANDLE hOs, void* pBuf);
119 * \param hOs - OS module object handle
128 void RxBufReserve (TI_HANDLE hOs, void* pBuf, TI_UINT32 len);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/MacServices/inc/
H A DPowerAuthorization.h66 TI_HANDLE powerAutho_Create(TI_HANDLE hOs);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/NetworkCtrl/inc/
H A DregulatoryDomainApi.h54 TI_HANDLE regulatoryDomain_create(TI_HANDLE hOs);
60 TI_HANDLE hOs,

Completed in 2583 milliseconds

1234567891011>>