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

1 2 3 4 5 6 7 8

  /hardware/ti/wlan/wl1271/utils/
report.c 54 TI_HANDLE report_Create (TI_HANDLE hOs)
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, (void *)(pReport->aFileName[FILE_ID_3 ]), "regulatoryDomain " , sizeof("regulatoryDoma (…)
    [all...]
stack.c 60 * \param hOS - handle to the OS object\n
70 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);
fsm.c 91 TI_STATUS fsm_Create(TI_HANDLE hOs,
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,
160 os_memoryFree(hOs, pFsm->stateEventMatrix,
165 os_memoryFree(hOs, pFsm, sizeof(fsm_stateMachine_t));
198 TI_HANDLE hOs)
    [all...]
stack.h 54 TI_HANDLE hOs;
67 unsigned stackInit (Stack_t *pStack, TI_HANDLE hOs, unsigned uElemSize, unsigned uDep, void *pBuf, void (*fCpy) (TI_HANDLE, void*, void*, unsigned));
context.c 69 TI_HANDLE hOs;
97 * \param hOs - Handle to Os Abstraction Layer
101 TI_HANDLE context_Create (TI_HANDLE hOs)
106 hContext = os_memoryAlloc (hOs, sizeof(TContext));
114 os_memoryZero (hOs, hContext, (sizeof(TContext)));
136 os_protectDestroy (pContext->hOs, pContext->hProtectionLock);
139 os_memoryFree (pContext->hOs, pContext, sizeof(TContext));
153 * \param hOs - Handle to Os Abstraction Layer
158 void context_Init (TI_HANDLE hContext, TI_HANDLE hOs, TI_HANDLE hReport)
162 pContext->hOs = hOs
    [all...]
mem.c 45 TI_HANDLE hOs;
66 TI_HANDLE mem_Create (TI_HANDLE hOs)
68 TMemMng *pMemMng = (TMemMng *)os_memoryAlloc (hOs, sizeof(TMemMng));
72 pMemMng->hOs = hOs;
87 os_memoryFree (pMemMng->hOs, (void *)pMemMng, sizeof(TMemMng));
121 pMemBlock = (TMemBlock *) os_memoryAlloc (pMemMng->hOs, total);
165 os_memorySet (pMemMng->hOs, ptr, 0, total);
217 os_memoryFree (pMemMng->hOs, pMemBlock, pMemBlock->signature + sizeof(TMemBlock) + sizeof(TI_UINT32));
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
broadcastKeySM.c 83 broadcastKey_t* broadcastKey_create(TI_HANDLE hOs)
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;
    [all...]
unicastKeySM.c 81 unicastKey_t* unicastKey_create(TI_HANDLE hOs)
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;
    [all...]
keyDerive.c 78 keyDerive_t* keyDerive_create(TI_HANDLE hOs)
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;
keyParser.c 76 keyParser_t* keyParser_create(TI_HANDLE hOs)
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;
keyDerive.h 76 TI_HANDLE hOs;
88 keyDerive_t* keyDerive_create(TI_HANDLE hOs);
96 TI_HANDLE hOs);
keyDeriveTkip.c 129 os_memoryCopy(pKeyDerive->hOs, (void *)key.encKey, (void *)keyMaterialTkip->encKey, KEY_DERIVE_TKIP_ENC_LEN);
132 os_memoryCopy(pKeyDerive->hOs, (void *)key.micTxKey, (void *)keyMaterialTkip->micRxKey, KEY_DERIVE_TKIP_MIC_LEN);
134 os_memoryCopy(pKeyDerive->hOs, (void *)key.micRxKey, (void *)keyMaterialTkip->micTxKey, KEY_DERIVE_TKIP_MIC_LEN);
138 os_memoryCopy(pKeyDerive->hOs, (void *)key.micRxKey, (void *)keyMaterialTkip->micRxKey, KEY_DERIVE_TKIP_MIC_LEN);
140 os_memoryCopy(pKeyDerive->hOs, (void *)key.micTxKey, (void *)keyMaterialTkip->micTxKey, KEY_DERIVE_TKIP_MIC_LEN);
146 os_memoryCopy(pKeyDerive->hOs, (void *)key.keyRsc, (void *)keyMaterialTkip->keyRSC, KEY_RSC_LEN);
152 os_memoryCopy(pKeyDerive->hOs, &pKeyDerive->key, pEncodedKey, sizeof(encodedKeyMaterial_t));
181 os_memoryZero(pKeyDerive->hOs, &key, sizeof(TSecurityKeys));
190 os_memoryZero(pKeyDerive->hOs, &pKeyDerive->key, sizeof(encodedKeyMaterial_t));
mainSecSm.c 100 * I - hOs - OS handle for OS operations.
108 mainSec_t* mainSec_create(TI_HANDLE hOs)
114 pHandle = (mainSec_t*)os_memoryAlloc(hOs, sizeof(mainSec_t));
120 os_memoryZero(hOs, pHandle, sizeof(mainSec_t));
123 status = fsm_Create(hOs, &pHandle->pMainSecSm, MAIN_SEC_MAX_NUM_STATES, MAIN_SEC_MAX_NUM_EVENTS);
126 os_memoryFree(hOs, pHandle, sizeof(mainSec_t));
130 pHandle->pMainKeys = mainKeys_create(hOs);
133 fsm_Unload(hOs, pHandle->pMainSecSm);
134 os_memoryFree(hOs, pHandle, sizeof(mainSec_t));
139 pHandle->hOs = hOs
    [all...]
broadcastKeySM.h 87 TI_HANDLE hOs;
101 broadcastKey_t* broadcastKey_create(TI_HANDLE hOs);
109 TI_HANDLE hOs);
unicastKeySM.h 89 TI_HANDLE hOs;
103 unicastKey_t* unicastKey_create(TI_HANDLE hOs);
111 TI_HANDLE hOs);
keyDeriveAes.c 126 os_memoryZero(pKeyDerive->hOs, &key, sizeof(TSecurityKeys));
131 os_memoryCopy(pKeyDerive->hOs, (void *)key.encKey, pEncodedKey->pData + MAC_ADDR_LEN+KEY_RSC_LEN,
137 os_memoryCopy(pKeyDerive->hOs, (void *)key.keyRsc, (void *)keyMaterialAes->keyRSC, KEY_RSC_LEN);
142 os_memoryCopy(pKeyDerive->hOs, &pKeyDerive->key, pEncodedKey, sizeof(encodedKeyMaterial_t));
176 os_memoryZero(pKeyDerive->hOs, &key, sizeof(TSecurityKeys));
185 os_memoryZero(pKeyDerive->hOs, &pKeyDerive->key, sizeof(encodedKeyMaterial_t));
externalSec.h 88 TI_HANDLE hOs;
100 struct externalSec_t* externalSec_create(TI_HANDLE hOs);
keyParser.h 65 typedef TI_STATUS (*keyParser_config_t)(struct _keyParser_t *pKeyParser, TI_HANDLE hReport, TI_HANDLE hOs);
82 TI_HANDLE hOs;
97 keyParser_t* keyParser_create(TI_HANDLE hOs);
105 TI_HANDLE hOs,
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
GeneralUtil.h 65 TI_HANDLE hOs;
75 TI_HANDLE hOs;
  /hardware/ti/wlan/wl1271/platforms/os/common/inc/
RxBuf.h 90 * \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);
  /hardware/ti/wlan/wl1271/stad/src/Ctrl_Interface/
CmdHndlr.c 59 TI_HANDLE hOs;
71 extern void wlanDrvIf_CommandDone (TI_HANDLE hOs, void *pSignalObject, TI_UINT8 *CmdResp_p);
80 * \param hOs - Handle to the Os Abstraction Layer
84 TI_HANDLE cmdHndlr_Create (TI_HANDLE hOs, TI_HANDLE hEvHandler)
86 TCmdHndlrObj *pCmdHndlr = (TCmdHndlrObj *) os_memoryAlloc (hOs, sizeof(TCmdHndlrObj));
93 os_memoryZero (hOs, (void *)pCmdHndlr, sizeof(TCmdHndlrObj));
95 pCmdHndlr->hOs = hOs;
97 pCmdHndlr->hCmdInterpret = cmdInterpret_Create (hOs);
136 os_memoryFree (pCmdHndlr->hOs, hCmdHndlr, sizeof(TCmdHndlrObj))
    [all...]
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/
fwDebug.c 55 TI_HANDLE hOs;
78 * \param hOs - Handle to OS
86 TI_HANDLE fwDbg_Create (TI_HANDLE hOs)
88 TFwDebug *pFwDebug = (TFwDebug *)os_memoryAlloc(hOs,sizeof(TFwDebug));
97 os_memoryZero (hOs, pFwDebug, sizeof (TFwDebug));
98 pFwDebug->hOs = hOs;
126 pFwDebug->pDMABuf = (TI_UINT8*)os_memoryAlloc(pFwDebug->hOs,DMA_SIZE_BUF);
149 os_memoryFree(pFwDebug->hOs,pFwDebug->pDMABuf,DMA_SIZE_BUF);
151 os_memoryFree(pFwDebug->hOs,pFwDebug,sizeof(pFwDebug))
    [all...]
  /hardware/ti/wlan/wl1271/Test/
fwdriverdebug.h 106 TI_HANDLE hOs,
116 void FW_DebugSendPacket(TI_HANDLE hDrvMain ,TI_HANDLE hOs, TI_HANDLE hTxMgmtQ, void* pParam);
117 void FW_DebugInfinitSendPacket(TI_HANDLE hDrvMain ,TI_HANDLE hOs);
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
osRgstry_parser.h 58 extern int osInitTable_IniFile (TI_HANDLE hOs, TInitTable *InitTable, char *file_buf, int file_length);
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
regulatoryDomainApi.h 54 TI_HANDLE regulatoryDomain_create(TI_HANDLE hOs);

Completed in 208 milliseconds

1 2 3 4 5 6 7 8