Searched refs:vfs_handle (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/xawt/
H A Dawt_Desktop.c39 void *vfs_handle; local
43 vfs_handle = dlopen(VERSIONED_JNI_LIB_NAME("gnomevfs-2", "0"), RTLD_LAZY);
44 if (vfs_handle == NULL) {
45 vfs_handle = dlopen(JNI_LIB_NAME("gnomevfs-2"), RTLD_LAZY);
46 if (vfs_handle == NULL) {
54 gnome_vfs_init = (GNOME_VFS_INIT_TYPE*)dlsym(vfs_handle, "gnome_vfs_init");
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DGnomeFileTypeDetector.c161 void* vfs_handle; local
163 vfs_handle = dlopen("libgnomevfs-2.so", RTLD_LAZY);
164 if (vfs_handle == NULL) {
165 vfs_handle = dlopen("libgnomevfs-2.so.0", RTLD_LAZY);
167 if (vfs_handle == NULL) {
171 gnome_vfs_init = (gnome_vfs_init_function)dlsym(vfs_handle, "gnome_vfs_init");
173 dlsym(vfs_handle, "gnome_vfs_mime_type_from_name");
178 dlclose(vfs_handle);

Completed in 30 milliseconds