Searched refs:pslash (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp474 char *pslash; local
481 pslash = strrchr(buf, '/');
482 if (pslash != NULL)
483 *pslash = '\0'; /* get rid of /{client|server|hotspot} */
490 if (pslash != NULL) {
491 pslash = strrchr(buf, '/');
492 if (pslash != NULL) {
493 *pslash = '\0'; /* get rid of /<arch> (/lib on macosx) */
495 pslash = strrchr(buf, '/');
496 if (pslash !
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp401 char *pslash; local
408 pslash = strrchr(buf, '/');
409 if (pslash != NULL)
410 *pslash = '\0'; /* get rid of /{client|server|hotspot} */
417 if (pslash != NULL) {
418 pslash = strrchr(buf, '/');
419 if (pslash != NULL) {
420 *pslash = '\0'; /* get rid of /<arch> */
421 pslash = strrchr(buf, '/');
422 if (pslash !
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp784 char *pslash; local
791 pslash = strrchr(buf, '/');
792 if (pslash != NULL)
793 *pslash = '\0'; /* get rid of /{client|server|hotspot} */
800 if (pslash != NULL) {
801 pslash = strrchr(buf, '/');
802 if (pslash != NULL) {
803 *pslash = '\0'; /* get rid of /<arch> */
804 pslash = strrchr(buf, '/');
805 if (pslash !
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp193 char *pslash; local
202 pslash = strrchr(home_dir, '\\');
203 if (pslash != NULL) {
204 *pslash = '\0'; /* get rid of \{client|server} */
205 pslash = strrchr(home_dir, '\\');
206 if (pslash != NULL)
207 *pslash = '\0'; /* get rid of \bin */

Completed in 873 milliseconds