Searched defs:hSplashLib (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_UNIXToolkit.c256 void* hSplashLib = dlopen(0, RTLD_LAZY); local
257 if (!hSplashLib) {
260 splashClose = (SplashClose_t)dlsym(hSplashLib,
265 dlclose(hSplashLib);
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c955 static void* hSplashLib = NULL; variable
958 if (!hSplashLib) {
961 hSplashLib = dlopen(splashLibPath, RTLD_LAZY | RTLD_GLOBAL);
963 if (hSplashLib) {
964 void* sym = dlsym(hSplashLib, name);
972 if (hSplashLib) {
973 dlclose(hSplashLib);
974 hSplashLib = NULL;
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c1296 static HMODULE hSplashLib = NULL; variable
1309 if (!hSplashLib) {
1310 hSplashLib = LoadLibrary(libraryPath);
1312 if (hSplashLib) {
1313 return GetProcAddress(hSplashLib, name);
1320 if (hSplashLib) {
1321 FreeLibrary(hSplashLib);
1322 hSplashLib = NULL;
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c793 static void* hSplashLib = NULL; variable
796 if (!hSplashLib) {
815 hSplashLib = dlopen(splashPath, RTLD_LAZY | RTLD_GLOBAL);
820 if (hSplashLib) {
822 dlclose(hSplashLib);
823 hSplashLib = NULL;
827 if (hSplashLib) {
828 void* sym = dlsym(hSplashLib, name);
836 if (hSplashLib) {
837 dlclose(hSplashLib);
[all...]
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c1858 static void* hSplashLib = NULL; variable
1861 if (!hSplashLib) {
1862 hSplashLib = dlopen(SPLASHSCREEN_SO, RTLD_LAZY | RTLD_GLOBAL);
1864 if (hSplashLib) {
1865 void* sym = dlsym(hSplashLib, name);
1873 if (hSplashLib) {
1874 dlclose(hSplashLib);
1875 hSplashLib = NULL;
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c1104 static HMODULE hSplashLib = NULL; variable
1117 if (!hSplashLib) {
1118 hSplashLib = LoadLibrary(libraryPath);
1120 if (hSplashLib) {
1121 return GetProcAddress(hSplashLib, name);
1128 if (hSplashLib) {
1129 FreeLibrary(hSplashLib);
1130 hSplashLib = NULL;

Completed in 64 milliseconds