Searched refs:ebuflen (Results 1 - 8 of 8) sorted by relevance

/openjdk9/hotspot/src/os/windows/vm/
H A Dos_windows.hpp67 static HINSTANCE load_Windows_dll(const char* name, char *ebuf, int ebuflen);
H A Dos_windows.cpp1439 void * os::dll_load(const char *name, char *ebuf, int ebuflen) { argument
1447 strncpy(ebuf, "Can't find dependent libraries", ebuflen - 1);
1448 ebuf[ebuflen - 1] = '\0';
1460 lasterror(ebuf, (size_t) ebuflen);
1461 ebuf[ebuflen - 1] = '\0';
1538 ::_snprintf(ebuf, ebuflen - 1,
1543 ::_snprintf(ebuf, ebuflen - 1,
3846 int ebuflen) {
3856 jio_snprintf(ebuf, ebuflen,
3869 if ((result = (HINSTANCE)os::dll_load(path, ebuf, ebuflen)) !
3845 load_Windows_dll(const char* name, char *ebuf, int ebuflen) argument
[all...]
/openjdk9/hotspot/src/os/linux/vm/
H A Dos_linux.hpp111 static void *dlopen_helper(const char *name, char *ebuf, int ebuflen);
112 static void *dll_load_in_vmthread(const char *name, char *ebuf, int ebuflen);
H A Dos_linux.cpp1628 VM_LinuxDllLoad(const char *fn, char *ebuf, int ebuflen) :
1629 _filename(fn), _ebuf(ebuf), _ebuflen(ebuflen), _lib(NULL) {}
1638 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) {
1679 result = os::Linux::dlopen_helper(filename, ebuf, ebuflen);
1685 VM_LinuxDllLoad op(filename, ebuf, ebuflen);
1697 result = os::Linux::dlopen_helper(filename, ebuf, ebuflen);
1706 int diag_msg_max_length=ebuflen-strlen(ebuf);
1859 int ebuflen) {
1862 ::strncpy(ebuf, ::dlerror(), ebuflen - 1);
1863 ebuf[ebuflen
[all...]
/openjdk9/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1359 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) { argument
1370 ::strncpy(ebuf, ::dlerror(), ebuflen-1);
1371 ebuf[ebuflen-1]='\0';
1377 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) { argument
1391 ::strncpy(ebuf, ::dlerror(), ebuflen-1);
1392 ebuf[ebuflen-1]='\0';
1393 int diag_msg_max_length=ebuflen-strlen(ebuf);
/openjdk9/hotspot/src/share/vm/runtime/
H A Dos.hpp570 static void* dll_load(const char *name, char *ebuf, int ebuflen);
/openjdk9/hotspot/src/os/aix/vm/
H A Dos_aix.cpp1325 void *os::dll_load(const char *filename, char *ebuf, int ebuflen) { argument
1327 if (ebuf && ebuflen > 0) {
1329 ebuf[ebuflen - 1] = '\0';
1333 ::strncpy(ebuf, "dll_load: empty filename specified", ebuflen - 1);
1346 if (error_report && ebuf && ebuflen > 0) {
1347 snprintf(ebuf, ebuflen - 1, "%s, LIBPATH=%s, LD_LIBRARY_PATH=%s : %s",
/openjdk9/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1617 void * os::dll_load(const char *filename, char *ebuf, int ebuflen) { argument
1628 ::strncpy(ebuf, ::dlerror(), ebuflen-1);
1629 ebuf[ebuflen-1]='\0';
1630 int diag_msg_max_length=ebuflen-strlen(ebuf);

Completed in 313 milliseconds