Searched defs:lib (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp111 inline void os::dll_unload(void *lib) { argument
112 ::dlclose(lib);
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_core.c45 lib_info* lib = NULL; local
64 lib = ph->libs;
65 while (lib) {
66 int fd = lib->fd;
68 lib = lib->next;
286 lib_info* lib = ph->libs; local
287 while (lib != NULL) {
291 if ((jvm_name = strstr(lib->name, "/libjvm.so")) != 0 ||
292 (jvm_name = strstr(lib
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_core.c45 lib_info* lib = NULL; local
64 lib = ph->libs;
65 while (lib) {
66 int fd = lib->fd;
68 lib = lib->next;
285 lib_info* lib = ph->libs; local
286 while (lib != NULL) {
290 if ((jvm_name = strstr(lib->name, "/libjvm.so")) != 0 ||
291 (jvm_name = strstr(lib
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.hpp163 void add(AgentLibrary* lib) { argument
165 _first = _last = lib;
167 _last->_next = lib;
168 _last = lib;
170 lib->_next = NULL;
174 void remove(AgentLibrary* lib) { argument
178 if (curr == lib) {
470 static void convert_library_to_agent(AgentLibrary* lib) argument
471 { _libraryList.remove(lib);
472 _agentList.add(lib); }
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c168 void *lib = 0; local
174 lib = dlopen(JNI_LIB_NAME("sunwjdga"), RTLD_NOW);
177 if (lib != NULL) {
179 void *sym = dlsym(lib, "JDgaLibInit");
191 dlclose(lib);
192 lib = NULL;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.c418 void *lib = NULL; local
421 lib = dlopen(GTK2_LIB_VERSIONED, RTLD_LAZY | RTLD_LOCAL);
422 if (lib == NULL) {
423 lib = dlopen(GTK2_LIB, RTLD_LAZY | RTLD_LOCAL);
424 if (lib == NULL) {
429 fp_gtk_check_version = dlsym(lib, "gtk_check_version");
435 dlclose(lib);

Completed in 71 milliseconds

12