Home
last modified time | relevance | path

Searched refs:dllHandle (Results 1 – 25 of 70) sorted by relevance

123

/dports/multimedia/obs-studio/obs-studio-27.1.3/plugins/obs-vst/win/
H A DVSTPlugin-win.cpp30 dllHandle = LoadLibraryW(wpath); in loadEffect()
32 if (dllHandle == nullptr) { in loadEffect()
51 vstPluginMain mainEntryPoint = (vstPluginMain)GetProcAddress(dllHandle, "VSTPluginMain"); in loadEffect()
54 mainEntryPoint = (vstPluginMain)GetProcAddress(dllHandle, "VstPluginMain()"); in loadEffect()
58 mainEntryPoint = (vstPluginMain)GetProcAddress(dllHandle, "main"); in loadEffect()
74 if (dllHandle) { in unloadLibrary()
75 FreeLibrary(dllHandle); in unloadLibrary()
76 dllHandle = nullptr; in unloadLibrary()
/dports/devel/ptlib/ptlib-2.10.11/src/ptlib/unix/
H A Dudll.cxx300 : dllHandle(NULL) in PDynaLink()
305 : dllHandle(NULL) in PDynaLink()
340 dllHandle = dlopen((char *)(const char *)name, RTLD_NOW); in Open()
342 dllHandle = dlopen((const char *)name, RTLD_NOW); in Open()
345 if (dllHandle == NULL) { in Open()
358 if (dllHandle == NULL) in Close()
365 dlclose(dllHandle); in Close()
366 dllHandle = NULL; in Close()
372 return dllHandle != NULL; in IsLoaded()
406 if (dllHandle == NULL) in GetFunction()
[all …]
/dports/games/openjk/OpenJK-07675e2/codemp/qcommon/
H A Dvm.cpp138 vm->dllHandle = Sys_LoadLegacyGameDll( vm->name, &vm->legacy.main, VM_DllSyscall ); in VM_CreateLegacy()
141 if ( vm->dllHandle ) { in VM_CreateLegacy()
143 Com_Printf( " succeeded [0x%" PRIxPTR "]\n", (uintptr_t)vm->dllHandle ); in VM_CreateLegacy()
177 vm->dllHandle = Sys_LoadGameDll( vm->name, &vm->GetModuleAPI ); in VM_Create()
180 if ( vm->dllHandle ) { in VM_Create()
182 …eded [0x%" PRIxPTR "+0x%" PRIxPTR "]\n", vm->dllHandle, (intptr_t)vm->GetModuleAPI - (intptr_t)vm-… in VM_Create()
200 if ( vm->dllHandle ) in VM_Free()
201 Sys_UnloadDll( vm->dllHandle ); in VM_Free()
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/main/
H A Dminidump.cpp59 HMODULE dllHandle = LoadLibrary(L"dbghelp.dll"); in CreateMiniDump() local
60 if (dllHandle == NULL) in CreateMiniDump()
66 _MiniDumpWriteDump = (MINIDUMPWRITEDUMP)GetProcAddress(dllHandle, "MiniDumpWriteDump"); in CreateMiniDump()
69 FreeLibrary(dllHandle); in CreateMiniDump()
100 FreeLibrary(dllHandle); in CreateMiniDump()
/dports/lang/perl5.34/perl-5.34.0/os2/
H A Ddl_os2.c13 static ULONG dllHandle; variable
33 dllHandle = modHandle; in _DLL_InitTerm()
39 dllHandle = (unsigned long)NULLHANDLE; in _DLL_InitTerm()
74 dllHandle = mod; in find_myself()
93 return (void*)dllHandle; in dlopen()
94 rc = DosQueryModuleName(dllHandle, sizeof(dllname), dllname); in dlopen()
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/os2/
H A Ddl_os2.c13 static ULONG dllHandle; variable
33 dllHandle = modHandle; in _DLL_InitTerm()
39 dllHandle = (unsigned long)NULLHANDLE; in _DLL_InitTerm()
74 dllHandle = mod; in find_myself()
93 return (void*)dllHandle; in dlopen()
94 rc = DosQueryModuleName(dllHandle, sizeof(dllname), dllname); in dlopen()
/dports/lang/perl5.30/perl-5.30.3/os2/
H A Ddl_os2.c13 static ULONG dllHandle; variable
33 dllHandle = modHandle; in _DLL_InitTerm()
39 dllHandle = (unsigned long)NULLHANDLE; in _DLL_InitTerm()
74 dllHandle = mod; in find_myself()
93 return (void*)dllHandle; in dlopen()
94 rc = DosQueryModuleName(dllHandle, sizeof(dllname), dllname); in dlopen()
/dports/lang/perl5.32/perl-5.32.1/os2/
H A Ddl_os2.c13 static ULONG dllHandle; variable
33 dllHandle = modHandle; in _DLL_InitTerm()
39 dllHandle = (unsigned long)NULLHANDLE; in _DLL_InitTerm()
74 dllHandle = mod; in find_myself()
93 return (void*)dllHandle; in dlopen()
94 rc = DosQueryModuleName(dllHandle, sizeof(dllname), dllname); in dlopen()
/dports/math/p5-Math-Pari/pari-2.3.5/src/systems/os2/
H A Dos2.c13 static ULONG dllHandle; variable
24 dllHandle = modHandle; in _DLL_InitTerm()
30 dllHandle = (unsigned long)NULLHANDLE; in _DLL_InitTerm()
65 dllHandle = mod; in find_myself()
81 return (void*)dllHandle; in dlopen()
82 rc = DosQueryModuleName(dllHandle, sizeof(dllname), dllname); in dlopen()
/dports/math/pari/pari-2.13.3/src/systems/os2/
H A Dos2.c13 static ULONG dllHandle; variable
24 dllHandle = modHandle; in _DLL_InitTerm()
30 dllHandle = (unsigned long)NULLHANDLE; in _DLL_InitTerm()
57 dllHandle = mod; in find_myself()
72 if (handle_loaded) return (void*)dllHandle; in dlopen()
73 rc = DosQueryModuleName(dllHandle, sizeof(dllname), dllname); in dlopen()
/dports/games/dhewm3/dhewm3-1.5.1/neo/sys/
H A Dsys_local.cpp84 void *idSysLocal::DLL_GetProcAddress( uintptr_t dllHandle, const char *procName ) { in DLL_GetProcAddress() argument
85 return Sys_DLL_GetProcAddress( dllHandle, procName ); in DLL_GetProcAddress()
88 void idSysLocal::DLL_Unload( uintptr_t dllHandle ) { in DLL_Unload() argument
89 Sys_DLL_Unload( dllHandle ); in DLL_Unload()
H A Dsys_public.h149 void * Sys_DLL_GetProcAddress( uintptr_t dllHandle, const char *procName );
150 void Sys_DLL_Unload( uintptr_t dllHandle );
358 virtual void * DLL_GetProcAddress( uintptr_t dllHandle, const char *procName ) = 0;
359 virtual void DLL_Unload( uintptr_t dllHandle ) = 0;
H A Dsys_local.h58 virtual void * DLL_GetProcAddress( uintptr_t dllHandle, const char *procName );
59 virtual void DLL_Unload( uintptr_t dllHandle );
/dports/x11-toolkits/qt5-virtualkeyboard/kde-qtvirtualkeyboard-5.15.2p4/src/plugins/lipi-toolkit/3rdparty/lipi-toolkit/src/lipiengine/
H A DLipiEngineModule.cpp716 int LTKLipiEngineModule::mapShapeAlgoModuleFunctions(void *dllHandle) in mapShapeAlgoModuleFunctions() argument
727 int returnVal = m_OSUtilPtr->getFunctionAddress(dllHandle, in mapShapeAlgoModuleFunctions()
740 m_OSUtilPtr->unloadSharedLib(dllHandle); in mapShapeAlgoModuleFunctions()
749 returnVal = m_OSUtilPtr->getFunctionAddress(dllHandle, in mapShapeAlgoModuleFunctions()
761 m_OSUtilPtr->unloadSharedLib(dllHandle); in mapShapeAlgoModuleFunctions()
786 int LTKLipiEngineModule::mapWordAlgoModuleFunctions(void *dllHandle) in mapWordAlgoModuleFunctions() argument
796 int returnVal = m_OSUtilPtr->getFunctionAddress(dllHandle, in mapWordAlgoModuleFunctions()
808 m_OSUtilPtr->unloadSharedLib(dllHandle); in mapWordAlgoModuleFunctions()
817 returnVal = m_OSUtilPtr->getFunctionAddress(dllHandle, in mapWordAlgoModuleFunctions()
829 m_OSUtilPtr->unloadSharedLib(dllHandle); in mapWordAlgoModuleFunctions()
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgp_wxpsprn.cpp66 HINSTANCE dllHandle = NULL; in gp_xpsprint() local
74 if (!(dllHandle = LoadLibrary(TEXT("XpsPrint.dll")))) in gp_xpsprint()
80 StartXpsPrintJobPtr = (StartXpsPrintJobType)GetProcAddress(dllHandle, "StartXpsPrintJob"); in gp_xpsprint()
283 (void)FreeLibrary(dllHandle); in gp_xpsprint()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgp_wxpsprn.cpp66 HINSTANCE dllHandle = NULL; in gp_xpsprint() local
74 if (!(dllHandle = LoadLibrary(TEXT("XpsPrint.dll")))) in gp_xpsprint()
80 StartXpsPrintJobPtr = (StartXpsPrintJobType)GetProcAddress(dllHandle, "StartXpsPrintJob"); in gp_xpsprint()
283 (void)FreeLibrary(dllHandle); in gp_xpsprint()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.incubator.jpackage/windows/native/applauncher/
H A DWinLauncher.cpp90 HMODULE dllHandle = LoadLibraryEx(dllFullPath.c_str(), NULL, in loadDllWithAddDllDirectory() local
94 << ", LOAD_LIBRARY_SEARCH_DEFAULT_DIRS): " << dllHandle); in loadDllWithAddDllDirectory()
96 const auto freeDll = runAtEndOfScope([&dllHandle]() -> void { in loadDllWithAddDllDirectory()
97 Dll::freeLibrary(dllHandle); in loadDllWithAddDllDirectory()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.jpackage/windows/native/applauncher/
H A DWinLauncher.cpp91 HMODULE dllHandle = LoadLibraryEx(dllFullPath.c_str(), NULL, in loadDllWithAddDllDirectory() local
95 << ", LOAD_LIBRARY_SEARCH_DEFAULT_DIRS): " << dllHandle); in loadDllWithAddDllDirectory()
97 const auto freeDll = runAtEndOfScope([&dllHandle]() -> void { in loadDllWithAddDllDirectory()
98 Dll::freeLibrary(dllHandle); in loadDllWithAddDllDirectory()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.jpackage/windows/native/applauncher/
H A DWinLauncher.cpp90 HMODULE dllHandle = LoadLibraryEx(dllFullPath.c_str(), NULL, in loadDllWithAddDllDirectory() local
94 << ", LOAD_LIBRARY_SEARCH_DEFAULT_DIRS): " << dllHandle); in loadDllWithAddDllDirectory()
96 const auto freeDll = runAtEndOfScope([&dllHandle]() -> void { in loadDllWithAddDllDirectory()
97 Dll::freeLibrary(dllHandle); in loadDllWithAddDllDirectory()
/dports/games/tremulous/tremulous/tremulous-1.1.0-src/src/qcommon/
H A Dvm.c473 if ( vm->dllHandle ) { in VM_Restart()
557 vm->dllHandle = Sys_LoadDll( module, vm->fqpath , &vm->entryPoint, VM_DllSyscall ); in VM_Create()
558 if ( vm->dllHandle ) { in VM_Create()
622 if ( vm->dllHandle ) { in VM_Free()
623 Sys_UnloadDll( vm->dllHandle ); in VM_Free()
646 if ( vmTable[i].dllHandle ) { in VM_Clear()
647 Sys_UnloadDll( vmTable[i].dllHandle ); in VM_Clear()
863 if ( vm->dllHandle ) { in VM_VmInfo_f()
/dports/games/iortcw/iortcw-1.51c/MP/code/qcommon/
H A Dvm.c546 if ( vm->dllHandle ) { in VM_Restart()
649 vm->dllHandle = Sys_LoadGameDll(filename, &vm->entryPoint, VM_DllSyscall); in VM_Create()
651 if(vm->dllHandle) in VM_Create()
741 if ( vm->dllHandle ) { in VM_Free()
742 Sys_UnloadDll( vm->dllHandle ); in VM_Free()
812 return ( vm && vm->dllHandle ); in VM_IsNative()
995 if ( vm->dllHandle ) { in VM_VmInfo_f()
1066 if ( vm->dllHandle ) { in VM_GetTempMemory()
1098 if ( vm->dllHandle ) { in VM_FreeTempMemory()
1155 if ( vm->dllHandle ) {
/dports/games/iortcw/iortcw-1.51c/SP/code/qcommon/
H A Dvm.c549 if ( vm->dllHandle ) { in VM_Restart()
630 vm->dllHandle = Sys_LoadGameDll(filename, &vm->entryPoint, VM_DllSyscall); in VM_Create()
632 if(vm->dllHandle) in VM_Create()
724 if ( vm->dllHandle ) { in VM_Free()
725 Sys_UnloadDll( vm->dllHandle ); in VM_Free()
795 return ( vm && vm->dllHandle ); in VM_IsNative()
971 if ( vm->dllHandle ) { in VM_VmInfo_f()
1042 if ( vm->dllHandle ) { in VM_GetTempMemory()
1074 if ( vm->dllHandle ) { in VM_FreeTempMemory()
1130 if ( vm->dllHandle ) { in VM_ExplicitAlloc()
/dports/games/evq3/evq3/code/qcommon/
H A Dvm.c475 if ( vm->dllHandle ) { in VM_Restart()
552 vm->dllHandle = Sys_LoadDll( module, vm->fqpath , &vm->entryPoint, VM_DllSyscall ); in VM_Create()
553 if ( vm->dllHandle ) { in VM_Create()
630 if ( vm->dllHandle ) { in VM_Free()
631 Sys_UnloadDll( vm->dllHandle ); in VM_Free()
876 if ( vm->dllHandle ) { in VM_VmInfo_f()
/dports/games/worldofpadman/worldofpadman-1.2.20080621/code/qcommon/
H A Dvm.c475 if ( vm->dllHandle ) { in VM_Restart()
552 vm->dllHandle = Sys_LoadDll( module, vm->fqpath , &vm->entryPoint, VM_DllSyscall ); in VM_Create()
553 if ( vm->dllHandle ) { in VM_Create()
630 if ( vm->dllHandle ) { in VM_Free()
631 Sys_UnloadDll( vm->dllHandle ); in VM_Free()
876 if ( vm->dllHandle ) { in VM_VmInfo_f()
/dports/games/ioquake3/ioquake3-1.36/code/qcommon/
H A Dvm.c483 if ( vm->dllHandle ) { in VM_Restart()
560 vm->dllHandle = Sys_LoadDll( module, vm->fqpath , &vm->entryPoint, VM_DllSyscall ); in VM_Create()
561 if ( vm->dllHandle ) { in VM_Create()
638 if ( vm->dllHandle ) { in VM_Free()
639 Sys_UnloadDll( vm->dllHandle ); in VM_Free()
884 if ( vm->dllHandle ) { in VM_VmInfo_f()

123