Searched refs:oldest_user (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp315 char* oldest_user = NULL; local
401 if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user, mtInternal);
402 oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
404 strcpy(oldest_user, user);
419 return(oldest_user);
/openjdk7/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp315 char* oldest_user = NULL; local
401 if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user, mtInternal);
402 oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
404 strcpy(oldest_user, user);
419 return(oldest_user);
/openjdk7/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp306 char* oldest_user = NULL; local
392 if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user, mtInternal);
393 oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
395 strcpy(oldest_user, user);
410 return(oldest_user);

Completed in 37 milliseconds