Searched defs:lastSlash (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/native/common/
H A Djni_util_md.c35 char* lastSlash = max(strrchr(path, '\\'), strrchr(path, '/')); local
36 if (lastSlash == NULL) {
42 *lastSlash = 0;
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/
H A Dhprof_md.c304 char * lastSlash; local
308 lastSlash = strrchr(libdir, '/');
309 if ( lastSlash != NULL ) {
310 *lastSlash = '\0';
314 lastSlash = strrchr(libdir, '/');
315 if ( lastSlash != NULL ) {
316 *lastSlash = '\0';
/openjdk7/jdk/src/windows/demo/jvmti/hprof/
H A Dhprof_md.c248 char *lastSlash; local
253 lastSlash = strrchr(libdir, '\\');
254 if ( lastSlash != NULL ) {
255 *lastSlash = '\0';
257 lastSlash = strrchr(libdir, '\\');
258 if ( lastSlash != NULL ) {
259 *lastSlash = '\0';

Completed in 69 milliseconds