Searched defs:new_runpath (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c378 char* new_runpath = NULL; /* desired new LD_LIBRARY_PATH string */ local
606 new_runpath = JLI_MemAlloc(((runpath != NULL) ? JLI_StrLen(runpath) : 0) +
609 newpath = new_runpath + JLI_StrLen("LD_LIBRARY_PATH=");
621 sprintf(new_runpath, "LD_LIBRARY_PATH="
662 JLI_StrCat(new_runpath, ":");
663 JLI_StrCat(new_runpath, runpath);
666 if (putenv(new_runpath) != 0) {
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c237 char* new_runpath = NULL; /* desired new LD_LIBRARY_PATH string */ local
473 new_runpath = JLI_MemAlloc( ((runpath!=NULL)?strlen(runpath):0) +
476 newpath = new_runpath + strlen(LD_LIBRARY_PATH "=");
491 sprintf(new_runpath, LD_LIBRARY_PATH "="
530 strcat(new_runpath, ":");
531 strcat(new_runpath, runpath);
534 if( putenv(new_runpath) != 0) {

Completed in 36 milliseconds