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

1 2

  /hardware/ti/wlan/wl1271/utils/
context.h 62 TI_STATUS context_Destroy (TI_HANDLE hContext);
63 void context_Init (TI_HANDLE hContext, TI_HANDLE hOs, TI_HANDLE hReport);
64 TI_STATUS context_SetDefaults (TI_HANDLE hContext, TContextInitParams *pContextInitParams);
66 TI_UINT32 context_RegisterClient (TI_HANDLE hContext,
73 void context_RequestSchedule (TI_HANDLE hContext, TI_UINT32 uClientId);
74 void context_DriverTask (TI_HANDLE hContext);
75 void context_EnableClient (TI_HANDLE hContext, TI_UINT32 uClientId);
76 void context_DisableClient (TI_HANDLE hContext, TI_UINT32 uClientId);
78 void context_EnterCriticalSection (TI_HANDLE hContext);
79 void context_LeaveCriticalSection (TI_HANDLE hContext);
    [all...]
context.c 103 TI_HANDLE hContext;
106 hContext = os_memoryAlloc (hOs, sizeof(TContext));
108 if (!hContext)
114 os_memoryZero (hOs, hContext, (sizeof(TContext)));
116 return (hContext);
127 * \param hContext - The module object
131 TI_STATUS context_Destroy (TI_HANDLE hContext)
133 TContext *pContext = (TContext *)hContext;
152 * \param hContext - The queue object
158 void context_Init (TI_HANDLE hContext, TI_HANDLE hOs, TI_HANDLE hReport
    [all...]
timer.c 56 TI_HANDLE hContext;
140 context_EnterCriticalSection (pTimerModule->hContext);
143 context_LeaveCriticalSection (pTimerModule->hContext);
192 context_EnterCriticalSection (pTimerModule->hContext);
194 context_LeaveCriticalSection (pTimerModule->hContext);
201 context_EnterCriticalSection (pTimerModule->hContext);
203 context_LeaveCriticalSection (pTimerModule->hContext);
218 * \param hContext - Handle to context module
222 void tmr_Init (TI_HANDLE hTimerModule, TI_HANDLE hOs, TI_HANDLE hReport, TI_HANDLE hContext)
235 pTimerModule->hContext = hContext
    [all...]
timer.h 57 void tmr_Init (TI_HANDLE hTimerModule, TI_HANDLE hOs, TI_HANDLE hReport, TI_HANDLE hContext);
  /external/webkit/Source/WebCore/platform/win/
SSLKeyGeneratorWin.cpp 42 HCRYPTPROV hContext = 0;
47 CryptAcquireContextW(&hContext, L"keygen_container", MS_ENHANCED_PROV, PROV_RSA_FULL, CRYPT_DELETEKEYSET);
50 if (!CryptAcquireContextW(&hContext, L"keygen_container", MS_ENHANCED_PROV, PROV_RSA_FULL, CRYPT_NEWKEYSET))
54 if (!CryptGenKey(hContext, AT_KEYEXCHANGE, 0, &hKey) || !CryptExportPublicKeyInfo(hContext, AT_KEYEXCHANGE, X509_ASN_ENCODING, 0, &dwPubInfoLength))
60 if (!CryptExportPublicKeyInfo(hContext, AT_KEYEXCHANGE, X509_ASN_ENCODING, pPubInfo, &dwPubInfoLength))
77 if (!CryptSignAndEncodeCertificate(hContext, AT_KEYEXCHANGE, X509_ASN_ENCODING, X509_KEYGEN_REQUEST_TO_BE_SIGNED, &requestInfo, &signAlgo, 0, 0, &dwEncodedLength))
81 if (!CryptSignAndEncodeCertificate(hContext, AT_KEYEXCHANGE, X509_ASN_ENCODING, X509_KEYGEN_REQUEST_TO_BE_SIGNED, &requestInfo, &signAlgo, 0, reinterpret_cast<LPBYTE>(binary.data()), &dwEncodedLength))
93 if (hContext)
94 CryptReleaseContext(hContext, 0)
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Ctrl_Interface/
CmdHndlr.c 61 TI_HANDLE hContext;
160 context_EnterCriticalSection (pCmdHndlr->hContext);
162 context_LeaveCriticalSection (pCmdHndlr->hContext);
189 pCmdHndlr->hContext = pStadHandles->hContext;
200 pCmdHndlr->uContextId = context_RegisterClient (pCmdHndlr->hContext,
276 context_EnterCriticalSection (pCmdHndlr->hContext);
286 context_LeaveCriticalSection (pCmdHndlr->hContext); /* Leave critical section */
302 context_LeaveCriticalSection (pCmdHndlr->hContext);
310 context_LeaveCriticalSection (pCmdHndlr->hContext);
    [all...]
DrvMainModules.h 45 TI_HANDLE hContext;
DrvMain.c 268 pDrvMain->tStadHandles.hContext = context_Create (hOs);
269 if (pDrvMain->tStadHandles.hContext == NULL)
538 *pContext = pDrvMain->tStadHandles.hContext;
748 if (pDrvMain->tStadHandles.hContext != NULL)
750 context_Destroy (pDrvMain->tStadHandles.hContext);
796 context_Init (pModules->hContext, pModules->hOs, pModules->hReport);
797 tmr_Init (pModules->hTimer, pModules->hOs, pModules->hReport, pModules->hContext);
798 txnQ_Init (pModules->hTxnQ, pModules->hOs, pModules->hReport, pModules->hContext);
843 pModules->hContext,
885 context_SetDefaults (pDrvMain->tStadHandles.hContext, &pInitTable->tContextInitParams)
    [all...]
  /hardware/ti/wlan/wl1271/TWD/Data_Service/
txCtrlBlk.c 61 TI_HANDLE hContext;
126 TI_STATUS txCtrlBlk_Init (TI_HANDLE hTxCtrlBlk, TI_HANDLE hReport, TI_HANDLE hContext)
133 pTxCtrlBlk->hContext = hContext;
178 context_EnterCriticalSection (pTxCtrlBlk->hContext);
187 context_LeaveCriticalSection (pTxCtrlBlk->hContext);
196 context_LeaveCriticalSection (pTxCtrlBlk->hContext);
236 context_EnterCriticalSection (pTxCtrlBlk->hContext);
242 context_LeaveCriticalSection (pTxCtrlBlk->hContext);
  /hardware/ti/wlan/wl1271/TWD/Data_Service/Export_Inc/
txCtrlBlk_api.h 50 TI_STATUS txCtrlBlk_Init (TI_HANDLE hTxCtrlBlk, TI_HANDLE hReport, TI_HANDLE hContext);
  /hardware/ti/wlan/wl1271/Txn/
TxnQueue.c 109 TI_HANDLE hContext;
211 void txnQ_Init (TI_HANDLE hTxnQ, TI_HANDLE hOs, TI_HANDLE hReport, TI_HANDLE hContext)
218 pTxnQ->hContext = hContext;
271 context_EnterCriticalSection (pTxnQ->hContext);
287 context_LeaveCriticalSection (pTxnQ->hContext);
302 context_LeaveCriticalSection (pTxnQ->hContext);
314 context_EnterCriticalSection (pTxnQ->hContext);
346 context_LeaveCriticalSection (pTxnQ->hContext);
357 context_EnterCriticalSection (pTxnQ->hContext);
    [all...]
TxnQueue.h 95 * \param hContext - Handle to context module
105 TI_HANDLE hContext);
  /hardware/ti/wlan/wl1271/platforms/os/common/inc/
WlanDrvCommon.h 85 void *hContext;
  /hardware/ti/wlan/wl1271/TWD/TwIf/
TwIf.c 142 TI_HANDLE hContext;
285 TI_HANDLE hContext,
296 pTwIf->hContext = hContext;
329 pTwIf->uContextId = context_RegisterClient (pTwIf->hContext,
730 context_EnterCriticalSection (pTwIf->hContext);
733 context_LeaveCriticalSection (pTwIf->hContext);
756 context_EnterCriticalSection (pTwIf->hContext);
759 context_LeaveCriticalSection (pTwIf->hContext);
    [all...]
TwIf.h 84 TI_HANDLE hContext,
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
txMgmtQueue.c 132 TI_HANDLE hContext;
216 pTxMgmtQ->hContext = pStadHandles->hContext;
245 pTxMgmtQ->uContextId = context_RegisterClient (pTxMgmtQ->hContext,
314 context_EnterCriticalSection (pTxMgmtQ->hContext);
316 context_LeaveCriticalSection (pTxMgmtQ->hContext);
362 context_EnterCriticalSection (pTxMgmtQ->hContext);
371 context_LeaveCriticalSection (pTxMgmtQ->hContext);
384 context_RequestSchedule (pTxMgmtQ->hContext, pTxMgmtQ->uContextId);
796 context_EnterCriticalSection (pTxMgmtQ->hContext);
    [all...]
txDataQueue.c 121 pTxDataQ->hContext = pStadHandles->hContext;
174 pTxDataQ->uContextId = context_RegisterClient (pTxDataQ->hContext,
287 context_EnterCriticalSection (pTxDataQ->hContext);
289 context_LeaveCriticalSection (pTxDataQ->hContext);
339 context_EnterCriticalSection (pTxDataQ->hContext);
387 context_LeaveCriticalSection (pTxDataQ->hContext);
392 context_RequestSchedule (pTxDataQ->hContext, pTxDataQ->uContextId);
705 context_EnterCriticalSection (pTxDataQ->hContext);
707 context_LeaveCriticalSection (pTxDataQ->hContext);
    [all...]
TxDataClsfr.c 416 context_EnterCriticalSection (pTxDataQ->hContext);
419 context_LeaveCriticalSection (pTxDataQ->hContext);
447 context_EnterCriticalSection (pTxDataQ->hContext);
450 context_LeaveCriticalSection (pTxDataQ->hContext);
481 context_EnterCriticalSection (pTxDataQ->hContext);
485 context_LeaveCriticalSection (pTxDataQ->hContext);
562 context_EnterCriticalSection (pTxDataQ->hContext);
569 context_LeaveCriticalSection (pTxDataQ->hContext);
593 context_EnterCriticalSection (pTxDataQ->hContext);
599 context_LeaveCriticalSection (pTxDataQ->hContext);
    [all...]
txDataQueue.h 76 TI_HANDLE hContext;
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/
FwEvent.c 133 TI_HANDLE hContext;
214 * From hTWD we extract : hOs, hReport, hTwIf, hContext,
230 pFwEvent->hContext = pTWD->hContext;
270 pFwEvent->uContextId = context_RegisterClient (pFwEvent->hContext,
301 context_RequestSchedule (pFwEvent->hContext, pFwEvent->uContextId);
749 context_DisableClient (pFwEvent->hContext,pFwEvent->uContextId);
767 context_EnableClient (pFwEvent->hContext,pFwEvent->uContextId);
  /frameworks/av/libvideoeditor/vss/common/inc/
M4ENCODER_AudioCommon.h 222 typedef M4OSA_ERR (M4AE_init) (M4OSA_Context* hContext, M4OSA_Void* pUserData);
M4WRITER_common.h 203 typedef M4OSA_ERR (M4WRITER_openWrite) (M4WRITER_Context* hContext,\
  /hardware/ti/wlan/wl1271/TWD/TWDriver/
TWDriverInternal.h 82 TI_HANDLE hContext;
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
healthMonitor.c 78 TI_HANDLE hContext; /* handle to the context-engine object */
177 pHealthMonitor->hContext = pStadHandles->hContext;
  /hardware/ti/wlan/wl1271/Test/
debug.c 316 context_Print (pStadHandles->hContext);

Completed in 742 milliseconds

1 2