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

1 2 3

  /hardware/ti/wlan/wl1271/utils/
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));
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));
queue.c 59 TI_HANDLE hOs;
130 * \param hOs - Handle to Os Abstraction Layer
137 TI_HANDLE que_Create (TI_HANDLE hOs, TI_HANDLE hReport, TI_UINT32 uLimit, TI_UINT32 uNodeHeaderOffset)
142 pQue = os_memoryAlloc (hOs, sizeof(TQueue));
150 os_memoryZero (hOs, pQue, sizeof(TQueue));
156 pQue->hOs = hOs;
188 os_memoryFree (pQue->hOs, pQue, sizeof(TQueue));
203 * \param hOs - Handle to Os Abstraction Layer
208 TI_STATUS que_Init (TI_HANDLE hQue, TI_HANDLE hOs, TI_HANDLE hReport
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
keyDerive.h 76 TI_HANDLE hOs;
88 keyDerive_t* keyDerive_create(TI_HANDLE hOs);
96 TI_HANDLE hOs);
broadcastKeySM.h 87 TI_HANDLE hOs;
101 broadcastKey_t* broadcastKey_create(TI_HANDLE hOs);
109 TI_HANDLE hOs);
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,
unicastKeySM.h 89 TI_HANDLE hOs;
103 unicastKey_t* unicastKey_create(TI_HANDLE hOs);
111 TI_HANDLE hOs);
  /hardware/ti/wlan/wl1271/stad/src/Ctrl_Interface/
EvHandler.h 51 TI_HANDLE hOs;
59 TI_HANDLE EvHandler_Create (TI_HANDLE hOs);
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/Data_Service/
txCtrlBlk.c 59 TI_HANDLE hOs;
77 * INPUTS: hOs
83 TI_HANDLE txCtrlBlk_Create (TI_HANDLE hOs)
87 pTxCtrlBlk = os_memoryAlloc (hOs, sizeof(TTxCtrlBlkObj));
91 os_memoryZero (hOs, pTxCtrlBlk, sizeof(TTxCtrlBlkObj));
93 pTxCtrlBlk->hOs = hOs;
115 os_memoryFree(pTxCtrlBlk->hOs, pTxCtrlBlk, sizeof(TTxCtrlBlkObj));
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
SoftGemini.h 65 TI_HANDLE hOs;
requestHandler.h 83 TI_HANDLE hOs;
88 TI_HANDLE requestHandler_create(TI_HANDLE hOs);
92 TI_HANDLE hOs);
regulatoryDomain.h 130 TI_HANDLE hOs;
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
GeneralUtil.h 65 TI_HANDLE hOs;
75 TI_HANDLE hOs;
txPort.c 73 TI_HANDLE hOs;
100 TI_HANDLE txPort_create(TI_HANDLE hOs)
104 pTxPort = os_memoryAlloc(hOs, sizeof(TTxPortObj));
108 os_memoryZero(hOs, pTxPort, sizeof(TTxPortObj));
110 pTxPort->hOs = hOs;
132 os_memoryFree(pTxPort->hOs, pTxPort, sizeof(TTxPortObj));
txDataQueue.h 78 TI_HANDLE hOs;
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
StaCap.h 51 TI_HANDLE hOs;
82 TI_HANDLE StaCap_Create (TI_HANDLE hOs);
PowerMgrKeepAlive.c 50 TI_HANDLE hOs;
67 * \param hOS - handle to the os object
71 TI_HANDLE powerMgrKL_create (TI_HANDLE hOS)
76 pPowerMgrKL = os_memoryAlloc (hOS, sizeof(TPowerMgrKL));
83 pPowerMgrKL->hOs = hOS;
102 os_memoryFree (pPowerMgrKL->hOs, hPowerMgrKL, sizeof(TPowerMgrKL));
279 os_memoryCopy (pPowerMgrKL->hOs, &(pPowerMgrKL->tCurrentConfig.templates[ uIndex ]),
289 os_memoryCopy (pPowerMgrKL->hOs, &(pPowerMgrKL->tCurrentConfig.templates[ uIndex ]),
324 os_memoryCopy (pPowerMgrKL->hOs, (void*)pParam->content.pPowerMgrKeepAliveConfig
    [all...]
authSm.h 87 TI_HANDLE hOs;
healthMonitor.c 67 TI_HANDLE hOs; /* handle to the OS object */
129 * \param hOs - The OS adaptation handle
133 TI_HANDLE healthMonitor_create (TI_HANDLE hOs)
138 pHealthMonitor = (THealthMonitor*)os_memoryAlloc (hOs, sizeof(THealthMonitor));
143 os_memoryZero (hOs, pHealthMonitor, sizeof(THealthMonitor));
146 pHealthMonitor->hOs = hOs;
254 os_memoryFree (pHealthMonitor->hOs, pHealthMonitor, sizeof(THealthMonitor));
375 TRACE2(pHealthMonitor->hReport, REPORT_SEVERITY_CONSOLE, "***** recovery trigger: failureEvent =%d *****, ts=%d\n", pHealthMonitor->failureEvent, os_timeStampMs(pHealthMonitor->hOs));
376 WLAN_OS_REPORT (("***** recovery trigger: %s *****, ts=%d\n", sRecoveryTriggersNames[pHealthMonitor->failureEvent], os_timeStampMs(pHealthMonitor->hOs)));
    [all...]
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/
CmdMBox.h 83 TI_HANDLE hOs;
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/Txn/
WspiBusDrv.c 65 TI_HANDLE hOs;
102 * \param hOs - Handle to Os Abstraction Layer
106 TI_HANDLE busDrv_Create (TI_HANDLE hOs)
111 hBusDrv = os_memoryAlloc(hOs, sizeof(TBusDrvObj));
117 os_memoryZero(hOs, hBusDrv, sizeof(TBusDrvObj));
119 pBusDrv->hOs = hOs;
123 pBusDrv->hWspi= WSPI_Open(hOs);
148 os_memoryFree (pBusDrv->hOs, pBusDrv, sizeof(TBusDrvObj));
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
CmdInterpretWext.h 51 TI_HANDLE hOs; /* Pointer to the adapter object */

Completed in 182 milliseconds

1 2 3