Home
last modified time | relevance | path

Searched refs:hModule (Results 1 – 25 of 32) sorted by relevance

12

/trunk/main/cppu/source/uno/
H A Dlbmap.cxx342 oslModule hModule = cppu::detail::loadModule( rBridgeName ); in loadModule() local
344 if (hModule) in loadModule()
345 return hModule; in loadModule()
360 oslModule hModule = 0; in loadExternalMapping() local
364 hModule = loadModule( aName = getBridgeName( rTo, rFrom, rAddPurpose ) ); in loadExternalMapping()
365 if (! hModule) in loadExternalMapping()
367 if (! hModule) in loadExternalMapping()
370 if (hModule) in loadExternalMapping()
375 hModule, aSymbolName.pData ); in loadExternalMapping()
384 ::rtl_registerModuleForUnloading( hModule ); in loadExternalMapping()
[all …]
/trunk/main/i18npool/source/collator/
H A Dcollator_unicode.cxx47 hModule = NULL; in Collator_Unicode()
54 if (hModule) osl_unloadModule(hModule); in ~Collator_Unicode()
89hModule = osl_loadModuleRelative( &thisModule, aBuf.makeStringAndClear().pData, SAL_LOADMODULE_DEF… in loadCollatorAlgorithm()
90 if (hModule) { in loadCollatorAlgorithm()
96 func=(const sal_uInt8* (*)()) osl_getFunctionSymbol(hModule, in loadCollatorAlgorithm()
99 func=(const sal_uInt8* (*)()) osl_getFunctionSymbol(hModule, (func_base + rAlgorithm).pData); in loadCollatorAlgorithm()
112 func=(const sal_uInt8* (*)()) osl_getFunctionSymbol(hModule, aBuf.makeStringAndClear().pData); in loadCollatorAlgorithm()
/trunk/main/i18npool/source/indexentry/
H A Dindexentrysupplier_asian.cxx48 hModule = osl_loadModuleRelative( in IndexEntrySupplier_asian()
54 if (hModule) osl_unloadModule(hModule); in ~IndexEntrySupplier_asian()
63 if (hModule) { in getIndexCharacter()
67 …func=(sal_uInt16** (*)(sal_Int16*))osl_getFunctionSymbol(hModule, (get+rLocale.Language+OUString::… in getIndexCharacter()
69 …func=(sal_uInt16** (*)(sal_Int16*))osl_getFunctionSymbol(hModule, (get+rLocale.Language+OUString('… in getIndexCharacter()
115 if (hModule) { in getPhoneticCandidate()
123 …func=(sal_uInt16 **(*)(sal_Int16*))osl_getFunctionSymbol(hModule, OUString::createFromAscii(func_n… in getPhoneticCandidate()
/trunk/main/i18npool/source/breakiterator/
H A Dxdictionary.cxx56 hModule( NULL ), in xdictionary()
74hModule = osl_loadModuleRelative( &thisModule, aBuf.makeStringAndClear().pData, SAL_LOADMODULE_DEF… in xdictionary()
75 if( hModule ) { in xdictionary()
77 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getExistMark")… in xdictionary()
79 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getIndex1").pD… in xdictionary()
81 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getIndex2").pD… in xdictionary()
83 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getLenArray").… in xdictionary()
85 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getDataArea").… in xdictionary()
108 osl_unloadModule(hModule); in ~xdictionary()
/trunk/main/sal/osl/os2/
H A Dmodule.c75 void* hModule; in osl_loadAsciiModule() local
102 hModule = dlopen( buffer, RTLD_LOCAL); in osl_loadAsciiModule()
103 if (hModule != NULL) in osl_loadAsciiModule()
104 return (oslModule)hModule; in osl_loadAsciiModule()
166 void SAL_CALL osl_unloadModule(oslModule hModule) in osl_unloadModule() argument
168 if (hModule) in osl_unloadModule()
170 int nRet = dlclose(hModule); in osl_unloadModule()
/trunk/main/dbaccess/win32/source/odbcconfig/
H A Dodbcconfig.cxx137 HMODULE hModule = LoadLibraryW( ODBC_UI_LIB_NAME ); in WinMain() local
138 if ( hModule == NULL ) in WinMain()
139 hModule = LoadLibraryExW( ODBC_UI_LIB_NAME, NULL, LOAD_WITH_ALTERED_SEARCH_PATH ); in WinMain()
140 if ( hModule == NULL ) in WinMain()
143 FARPROC pManageDSProc = GetProcAddress( hModule, "SQLManageDataSources" ); in WinMain()
151 FreeLibrary( hModule ); in WinMain()
/trunk/main/setup_native/source/win32/customactions/regactivex/
H A Dregactivex.cxx99 HINSTANCE hModule = LoadLibraryExA( pActiveXPath, NULL, LOAD_WITH_ALTERED_SEARCH_PATH ); in RegisterActiveXNative() local
100 if( !( hModule <= ( HINSTANCE )HINSTANCE_ERROR ) ) in RegisterActiveXNative()
102 …DllNativeRegProc pNativeProc = ( DllNativeRegProc )GetProcAddress( hModule, "DllRegisterServerNati… in RegisterActiveXNative()
122 FreeLibrary( hModule ); in RegisterActiveXNative()
135 HINSTANCE hModule = LoadLibraryExA( pActiveXPath, NULL, LOAD_WITH_ALTERED_SEARCH_PATH ); in UnregisterActiveXNative() local
136 if( !( hModule <= ( HINSTANCE )HINSTANCE_ERROR ) ) in UnregisterActiveXNative()
138 …DllNativeUnregProc pNativeProc = ( DllNativeUnregProc )GetProcAddress( hModule, "DllUnregisterServ… in UnregisterActiveXNative()
142 FreeLibrary( hModule ); in UnregisterActiveXNative()
/trunk/main/setup_native/source/win32/customactions/javafilter/
H A Djfregca.cxx101 extern "C" UINT install_jf ( MSIHANDLE hModule ) { in install_jf() argument
102 bool bMulti = isMulti(hModule); in install_jf()
112 extern "C" UINT uninstall_jf ( MSIHANDLE hModule ) { in uninstall_jf() argument
113 bool bMulti = isMulti(hModule); in uninstall_jf()
132 bool isMulti( MSIHANDLE hModule ) { in isMulti() argument
136 UINT uiStat = MsiGetProperty(hModule, TEXT("ALLUSERS"), TEXT(""), &cchValueBuf); in isMulti()
143 uiStat = MsiGetProperty(hModule, TEXT("ALLUSERS"), szValueBuf, &cchValueBuf); in isMulti()
/trunk/main/javaunohelper/source/
H A Dpreload.cxx65 oslModule hModule = in inited_juhx() local
67 if (0 == hModule) in inited_juhx()
79 hModule, symbol.pData ); in inited_juhx()
83 hModule, symbol.pData ); in inited_juhx()
88 hModule, symbol.pData ); in inited_juhx()
92 (fptr_bootstrap)osl_getFunctionSymbol( hModule, symbol.pData ); in inited_juhx()
/trunk/main/sal/systools/win32/kill/
H A Dkill.cxx74 #define GetProcAddressEx( hProcess, hModule, lpProcName ) GetProcAddress( hModule, lpProcName ) argument
76 FARPROC WINAPI GetProcAddressEx( HANDLE hProcess, HMODULE hModule, LPCSTR lpProcName ) in GetProcAddressEx() argument
78 FARPROC lpfnProcAddress = GetProcAddress( hModule, lpProcName ); in GetProcAddressEx()
89 if ( GetModuleBaseName( GetCurrentProcess(), hModule, szBaseName, elementsof(szBaseName) ) ) in GetProcAddressEx()
109 if ( ahModules[n] != hModule ) in GetProcAddressEx()
110 *(LPBYTE*)&lpfnRemoteProcAddress += (LPBYTE)ahModules[n] - (LPBYTE)hModule; in GetProcAddressEx()
/trunk/main/sal/systools/win32/uwinapi/
H A DGetModuleFileNameExA.cpp32 … WINDOWS, DWORD, WINAPI, GetModuleFileNameExA, (HANDLE hProcess, HMODULE hModule, LPSTR lpFileName…
38 return GetModuleFileNameA( hModule, lpFileName, nSize );
51 if ( NULL == hModule )
55 fFound = (me.hModule == hModule);
H A DGetModuleFileNameExW.cpp31 … WINDOWS, DWORD, WINAPI, GetModuleFileNameExW, (HANDLE hProcess, HMODULE hModule, LPWSTR lpFileNam…
35 if ( GetModuleFileNameExA( hProcess, hModule, lpFileNameA, 2 * nSize ) )
H A DGetProcessId.cpp27 static FARPROC WINAPI GetRealProcAddress( HMODULE hModule, LPCSTR lpProcName ) in GetRealProcAddress() argument
29 FARPROC lpfn = GetProcAddress( hModule, lpProcName ); in GetRealProcAddress()
/trunk/main/i18npool/source/textconversion/
H A Dtextconversion.cxx44 hModule = osl_loadModuleRelative( in TextConversion()
50 if (hModule) osl_unloadModule(hModule); in ~TextConversion()
61 if (hModule) in getFunctionBySymbol()
62 return osl_getFunctionSymbol(hModule, OUString::createFromAscii(func).pData); in getFunctionBySymbol()
/trunk/main/i18npool/source/transliteration/
H A DtextToPronounce_zh.cxx151 hModule = osl_loadModuleRelative( in TextToPronounce_zh()
154 if (hModule) { in TextToPronounce_zh()
155 …sal_uInt16** (*function)() = (sal_uInt16** (*)()) osl_getFunctionSymbol(hModule, OUString::createF… in TextToPronounce_zh()
162 if (hModule) osl_unloadModule(hModule); in ~TextToPronounce_zh()
/trunk/main/sal/osl/w32/
H A Dsocket.cxx328 HINSTANCE hModule; in __osl_initSocketDialupImpl() local
332 hModule = LoadLibrary (INTERNET_MODULE_NAME); in __osl_initSocketDialupImpl()
333 if (!(hModule <= (HINSTANCE)HINSTANCE_ERROR)) in __osl_initSocketDialupImpl()
336 (GetProcAddress (hModule, "InternetAttemptConnect")); in __osl_initSocketDialupImpl()
338 (GetProcAddress (hModule, "InternetAutodial")); in __osl_initSocketDialupImpl()
340 (GetProcAddress (hModule, "InternetAutodialHangup")); in __osl_initSocketDialupImpl()
342 (GetProcAddress (hModule, "InternetGetConnectedState")); in __osl_initSocketDialupImpl()
343 pImpl->m_hModule = hModule; in __osl_initSocketDialupImpl()
H A Dmodule.cxx258 … if ( (BYTE *)pv >= (BYTE *)me32.hModule && (BYTE *)pv < (BYTE *)me32.hModule + me32.modBaseSize ) in _osl_addressGetModuleURL_Windows()
417 HMODULE hModule, // handle to the module
H A Dsecurity.c222 static HMODULE hModule = NULL; in CheckTokenMembership_Stub() local
225 if ( !hModule ) in CheckTokenMembership_Stub()
229 hModule = GetModuleHandleA( "ADVAPI32.DLL" ); in CheckTokenMembership_Stub()
231 …pCheckTokenMembership = (CheckTokenMembership_PROC)GetProcAddress( hModule, "CheckTokenMembership"… in CheckTokenMembership_Stub()
/trunk/main/sal/osl/unx/
H A Dmodule.c113 void SAL_CALL osl_unloadModule(oslModule hModule) in osl_unloadModule() argument
115 if (hModule) in osl_unloadModule()
118 int nRet = dlclose(hModule); in osl_unloadModule()
/trunk/main/setup_native/source/win32/customactions/quickstarter/
H A Dquickstarter.cxx198 static DWORD WINAPI _GetModuleFileNameExA( HANDLE hProcess, HMODULE hModule, LPSTR lpFileName, DWOR… in _GetModuleFileNameExA() argument
200 typedef DWORD (WINAPI *FN_PROC)( HANDLE hProcess, HMODULE hModule, LPSTR lpFileName, DWORD nSize ); in _GetModuleFileNameExA()
213 return lpProc( hProcess, hModule, lpFileName, nSize ); in _GetModuleFileNameExA()
/trunk/main/sfx2/source/appl/
H A Dshutdowniconw32.cxx744 HMODULE hModule( GetModuleHandle( NULL ) ); in OnDrawItem() local
749 hModule = GetModuleHandleW( pModuleName ); in OnDrawItem()
750 if ( hModule == NULL ) in OnDrawItem()
753 hModule = GetModuleHandleW( pModuleName ); in OnDrawItem()
757 hIcon = (HICON) LoadImageA( hModule, MAKEINTRESOURCE( pMyItem->iconId ), in OnDrawItem()
/trunk/main/bridges/source/cpp_uno/mingw_intel/
H A Ddllinit.cxx36 extern "C" BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved) in DllMain() argument
40 DisableThreadLibraryCalls(hModule); in DllMain()
/trunk/main/bridges/source/cpp_uno/msvc_win32_intel/
H A Ddllinit.cxx38 extern "C" BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved) in DllMain() argument
42 DisableThreadLibraryCalls(hModule); in DllMain()
/trunk/main/bridges/source/cpp_uno/msvc_win64_x86-64/
H A Ddllinit.cxx38 extern "C" BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved) in DllMain() argument
42 DisableThreadLibraryCalls(hModule); in DllMain()
/trunk/main/i18npool/inc/
H A DtextToPronounce_zh.hxx34 oslModule hModule; member in com::sun::star::i18n::TextToPronounce_zh

Completed in 99 milliseconds

12