/frameworks/av/media/libeffects/lvm/lib/Bass/src/ |
LVDBE_Control.c | 39 /* hInstance Instance handle */ 50 LVDBE_ReturnStatus_en LVDBE_GetParameters(LVDBE_Handle_t hInstance, 54 LVDBE_Instance_t *pInstance =(LVDBE_Instance_t *)hInstance; 70 /* hInstance Instance handle */ 81 LVDBE_ReturnStatus_en LVDBE_GetCapabilities(LVDBE_Handle_t hInstance, 85 LVDBE_Instance_t *pInstance =(LVDBE_Instance_t *)hInstance; 296 /* hInstance Instance handle */ 307 LVDBE_ReturnStatus_en LVDBE_Control(LVDBE_Handle_t hInstance, 311 LVDBE_Instance_t *pInstance =(LVDBE_Instance_t *)hInstance;
|
LVDBE_Init.c | 35 /* hInstance = NULL Returns the memory requirements */ 36 /* hInstance = Instance handle Returns the memory requirements and */ 39 /* When this function is called for memory allocation (hInstance=NULL) the memory */ 42 /* When the function is called for free (hInstance = Instance Handle) the memory */ 46 /* hInstance Instance Handle */ 58 LVDBE_ReturnStatus_en LVDBE_Memory(LVDBE_Handle_t hInstance, 64 LVDBE_Instance_t *pInstance = (LVDBE_Instance_t *)hInstance; 70 if (hInstance == LVM_NULL) 123 /* hInstance set to NULL. In this case the algorithm returns the new instance */ 127 /* by calling with hInstance = Instance Handle. In this case the memory table * [all...] |
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/ |
LVM_Control.c | 39 /* hInstance Instance handle */ 44 /* LVM_NULLADDRESS When hInstance, pParams or any control pointers are NULL */ 52 LVM_ReturnStatus_en LVM_SetControlParameters(LVM_Handle_t hInstance, 55 LVM_Instance_t *pInstance =(LVM_Instance_t *)hInstance; 58 if ((pParams == LVM_NULL) || (hInstance == LVM_NULL)) 210 /* hInstance Instance handle */ 215 /* LVM_NULLADDRESS when any of hInstance or pParams is NULL */ 222 LVM_ReturnStatus_en LVM_GetControlParameters(LVM_Handle_t hInstance, 225 LVM_Instance_t *pInstance =(LVM_Instance_t *)hInstance; 231 if ((pParams == LVM_NULL) || (hInstance == LVM_NULL) [all...] |
LVM_Init.c | 37 /* hInstance = NULL Returns the memory requirements */ 38 /* hInstance = Instance handle Returns the memory requirements and */ 41 /* When this function is called for memory allocation (hInstance=NULL) the memory */ 44 /* When the function is called for free (hInstance = Instance Handle) the memory */ 48 /* hInstance Instance Handle */ 64 LVM_ReturnStatus_en LVM_GetMemoryTable(LVM_Handle_t hInstance, 69 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance; 89 if (hInstance != LVM_NULL) [all...] |
/external/icu4c/samples/layout/ |
clayout.c | 71 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) 83 wndclass.hInstance = hInstance; 96 hAccel = LoadAccelerators(hInstance, szAppName); 102 NULL, NULL, hInstance, NULL); 114 UnregisterClass(szAppName, hInstance); 272 ofn.hInstance = NULL;
|
layout.cpp | 70 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) 82 wndclass.hInstance = hInstance; 95 hAccel = LoadAccelerators(hInstance, szAppName); 101 NULL, NULL, hInstance, NULL); 113 UnregisterClass(szAppName, hInstance); 270 ofn.hInstance = NULL;
|
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/ |
LVPSA_Control.c | 59 /* hInstance Pointer to the instance */ 67 LVPSA_RETURN LVPSA_Control ( pLVPSA_Handle_t hInstance, 71 LVPSA_InstancePr_t *pLVPSA_Inst = (LVPSA_InstancePr_t*)hInstance; 73 if((hInstance == LVM_NULL) || (pNewParams == LVM_NULL)) 100 /* hInstance Pointer to the instance */ 107 LVPSA_RETURN LVPSA_GetControlParams ( pLVPSA_Handle_t hInstance, 110 LVPSA_InstancePr_t *pLVPSA_Inst = (LVPSA_InstancePr_t*)hInstance; 112 if((hInstance == LVM_NULL) || (pParams == LVM_NULL)) 132 /* hInstance Pointer to the instance */ 139 LVPSA_RETURN LVPSA_GetInitParams ( pLVPSA_Handle_t hInstance, [all...] |
LVPSA_Memory.c | 30 /* hInstance = NULL Returns the memory requirements */ 31 /* hInstance = Instance handle Returns the memory requirements and */ 34 /* When this function is called for memory allocation (hInstance=NULL) the memory */ 37 /* When the function is called for free (hInstance = Instance Handle) the memory */ 41 /* hInstance Instance Handle */ 50 LVPSA_RETURN LVPSA_Memory ( pLVPSA_Handle_t hInstance, 60 LVPSA_InstancePr_t *pLVPSA_Inst = (LVPSA_InstancePr_t*)hInstance; 78 if (hInstance == LVM_NULL)
|
LVPSA_QPD_Process.c | 57 void LVPSA_QPD_Process ( void *hInstance, 66 LVPSA_InstancePr_t *pLVPSA_Inst = (LVPSA_InstancePr_t*)hInstance;
|
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/ |
LVREV_GetMemoryTable.c | 34 /* hInstance = NULL Returns the memory requirements */ 35 /* hInstance = Instance handle Returns the memory requirements and allocated */ 38 /* When this function is called for memory allocation (hInstance=NULL) the memory */ 41 /* When the function is called for free (hInstance = Instance Handle) the memory */ 45 /* hInstance Instance Handle */ 59 LVREV_ReturnStatus_en LVREV_GetMemoryTable(LVREV_Handle_t hInstance, 116 if (hInstance == LVM_NULL) 232 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance;
|
LVREV_Process.c | 35 /* hInstance Instance handle */ 43 /* LVREV_NULLADDRESS When one of hInstance, pInData or pOutData is NULL */ 49 LVREV_ReturnStatus_en LVREV_Process(LVREV_Handle_t hInstance, 54 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance; 65 if((hInstance == LVM_NULL) || (pInData == LVM_NULL) || (pOutData == LVM_NULL)) 164 /* hInstance Instance handle */ 172 /* LVREV_NULLADDRESS When one of hInstance, pInData or pOutData is NULL */
|
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-gdi/ |
graw_gdi.c | 91 wc.hInstance = GetModuleHandle(NULL); 110 wc.hInstance,
|
/external/mesa3d/src/gallium/targets/graw-gdi/ |
graw_gdi.c | 91 wc.hInstance = GetModuleHandle(NULL); 110 wc.hInstance,
|
/external/chromium/base/win/ |
wrapped_window_proc_unittest.cc | 57 HINSTANCE hinst = GetModuleHandle(NULL); 62 wc.hInstance = hinst;
|
/external/chromium_org/base/win/ |
wrapped_window_proc_unittest.cc | 57 HINSTANCE hinst = GetModuleHandle(NULL); 62 wc.hInstance = hinst;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
main_winmain.c | 21 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/ |
LVCS_Private.h | 155 void LVCS_TimerCallBack ( void* hInstance,
|
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
EffectBundle.h | 67 LVM_Handle_t hInstance; /* Instance handle */
|
EffectBundle.cpp | 217 pContext->pBundledContext->hInstance = NULL; 522 if (pContext->pBundledContext->hInstance != NULL){ 593 pContext->pBundledContext->hInstance = LVM_NULL; 596 LvmStatus = LVM_GetInstanceHandle(&pContext->pBundledContext->hInstance, 659 LvmStatus = LVM_SetControlParameters(pContext->pBundledContext->hInstance, 678 LvmStatus = LVM_SetHeadroomParams(pContext->pBundledContext->hInstance, 742 LvmStatus = LVM_Process(pContext->pBundledContext->hInstance, /* Instance handle */ 783 LvmStatus = LVM_GetControlParameters(pContext->pBundledContext->hInstance [all...] |
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
NativeWindowsSubWindow.cpp | 32 wc.hInstance = NULL; // handle to instance
|
/external/chromium_org/third_party/npapi/npspy/windows/ |
gui_main.cpp | 45 extern HINSTANCE hInst; 63 psp[0].hInstance = hInst; 73 psp[1].hInstance = hInst; 83 psp[2].hInstance = hInst; 93 psp[3].hInstance = hInst; 105 psh.hInstance = hInst;
|
/external/chromium_org/content/test/plugin/ |
plugin_create_instance_in_paint.cc | 33 wcex.hInstance = GetModuleHandle(NULL);
|
/frameworks/av/media/libeffects/lvm/lib/Eq/src/ |
LVEQNB_Init.c | 37 /* hInstance = NULL Returns the memory requirements */ 38 /* hInstance = Instance handle Returns the memory requirements and */ 41 /* When this function is called for memory allocation (hInstance=NULL) the memory */ 44 /* When the function is called for free (hInstance = Instance Handle) the memory */ 48 /* hInstance Instance Handle */ 61 LVEQNB_ReturnStatus_en LVEQNB_Memory(LVEQNB_Handle_t hInstance, 67 LVEQNB_Instance_t *pInstance = (LVEQNB_Instance_t *)hInstance; 79 if (hInstance == LVM_NULL) 160 /* hInstance set to NULL. In this case the algorithm returns the new instance */ 164 /* by calling with hInstance = Instance Handle. In this case the memory table * [all...] |
/external/libpng/contrib/visupng/ |
VisualPng.c | 77 int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, 90 wndclass.hInstance = hInstance; 91 wndclass.hIcon = LoadIcon (hInstance, szIconName) ; 127 NULL, NULL, hInstance, NULL); 132 hAccel = LoadAccelerators (hInstance, szProgName); 148 static HINSTANCE hInstance ; [all...] |
/external/chromium/chrome/browser/ui/views/status_icons/ |
status_tray_win.cc | 17 HINSTANCE hinst = GetModuleHandle(NULL); 21 wc.hInstance = hinst;
|