Searched refs:ebuf (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp77 char ebuf[1024]; local
100 _library = os::dll_load(buf, ebuf, sizeof ebuf);
105 _library = os::dll_load(buf, ebuf, sizeof ebuf);
115 _library = os::dll_load(buf, ebuf, sizeof ebuf);
123 _library = os::dll_load(buf, ebuf, sizeof ebuf);
135 ? (const char*)ebuf
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.hpp103 static void *dlopen_helper(const char *name, char *ebuf, int ebuflen);
104 static void *dll_load_in_vmthread(const char *name, char *ebuf, int ebuflen);
H A Dos_linux.cpp1841 VM_LinuxDllLoad(const char *fn, char *ebuf, int ebuflen) : argument
1842 _filename(fn), _ebuf(ebuf), _ebuflen(ebuflen), _lib(NULL) {}
1851 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) argument
1893 result = os::Linux::dlopen_helper(filename, ebuf, ebuflen);
1899 VM_LinuxDllLoad op(filename, ebuf, ebuflen);
1911 result = os::Linux::dlopen_helper(filename, ebuf, ebuflen);
1920 int diag_msg_max_length=ebuflen-strlen(ebuf);
1921 char* diag_msg_buf=ebuf+strlen(ebuf);
1924 // No more space in ebuf fo
2062 dlopen_helper(const char *filename, char *ebuf, int ebuflen) argument
2071 dll_load_in_vmthread(const char *filename, char *ebuf, int ebuflen) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DnativeLookup.cpp221 char ebuf[32]; local
222 void* dll = os::dll_load(dll_name, ebuf, sizeof(ebuf));
H A DjvmtiExport.cpp2168 char ebuf[1024]; local
2186 library = os::dll_load(agent, ebuf, sizeof ebuf);
2190 library = os::dll_load(buffer, ebuf, sizeof ebuf);
2195 library = os::dll_load(buffer, ebuf, sizeof ebuf);
H A Djvm.cpp3712 char ebuf[1024]; variable
3716 load_result = os::dll_load(name, ebuf, sizeof ebuf);
3720 jio_snprintf(msg, sizeof msg, "%s: %s", name, ebuf);
3721 // Since 'ebuf' may contain a string encoded using
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.cpp388 char ebuf[1024]; local
394 dll_load(buffer, ebuf, sizeof(ebuf));
398 _native_java_library = dll_load(buffer, ebuf, sizeof(ebuf));
400 vm_exit_during_initialization("Unable to load native library", ebuf);
407 dll_load(buffer, ebuf, sizeof(ebuf));
H A Dthread.cpp3696 char ebuf[1024];
3701 library = os::dll_load(name, ebuf, sizeof ebuf);
3704 size_t len = strlen(msg) + strlen(name) + strlen(sub_msg) + strlen(ebuf) + 1;
3706 jio_snprintf(buf, len, "%s%s%s%s", msg, name, sub_msg, ebuf);
3714 library = os::dll_load(buffer, ebuf, sizeof ebuf);
3718 library = os::dll_load(buffer, ebuf, sizeof ebuf);
3721 size_t len = strlen(msg) + strlen(name) + strlen(sub_msg) + strlen(ebuf)
[all...]
H A Dos.hpp529 static void* dll_load(const char *name, char *ebuf, int ebuflen);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.hpp61 static HINSTANCE load_Windows_dll(const char* name, char *ebuf, int ebuflen);
H A Dos_windows.cpp1447 void * os::dll_load(const char *name, char *ebuf, int ebuflen) argument
1457 strncpy(ebuf, "Can't find dependent libraries", ebuflen-1);
1458 ebuf[ebuflen-1]='\0';
1468 // Read system error message into ebuf
1470 lasterror(ebuf, (size_t) ebuflen);
1471 ebuf[ebuflen-1]='\0';
1554 ::_snprintf(ebuf, ebuflen-1,
1561 ::_snprintf(ebuf, ebuflen-1,
3639 HINSTANCE os::win32::load_Windows_dll(const char* name, char *ebuf, int ebuflen) { argument
3649 jio_snprintf(ebuf, ebufle
[all...]
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c304 get_functions(HMODULE h, char *ebuf, size_t elen) { argument
321 _snprintf(ebuf, elen, "Required method could not be found.");
370 * @param ebuf the error message buffer.
406 * @param ebuf the error buffer.
435 * @param ebuf the error buffer.
622 * @param ebuf the error buffer.
787 * @param ebuf error buffer.
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp608 char ebuf[1024]; local
610 void* handle = os::dll_load(path, ebuf, sizeof ebuf);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2097 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) { argument
2104 // Read system error message into ebuf
2105 ::strncpy(ebuf, ::dlerror(), ebuflen-1);
2106 ebuf[ebuflen-1]='\0';
2111 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) argument
2121 // Read system error message into ebuf
2123 ::strncpy(ebuf, ::dlerror(), ebuflen-1);
2124 ebuf[ebuflen-1]='\0';
2125 int diag_msg_max_length=ebuflen-strlen(ebuf);
2126 char* diag_msg_buf=ebuf
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp2079 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) argument
2089 // Read system error message into ebuf
2091 ::strncpy(ebuf, ::dlerror(), ebuflen-1);
2092 ebuf[ebuflen-1]='\0';
2093 int diag_msg_max_length=ebuflen-strlen(ebuf);
2094 char* diag_msg_buf=ebuf+strlen(ebuf);
2097 // No more space in ebuf for additional diagnostics message

Completed in 4940 milliseconds