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

/openjdk10/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp519 char* oldest_user = NULL; local
596 if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user);
597 oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
599 strcpy(oldest_user, user);
614 return(oldest_user);
/openjdk10/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp519 char* oldest_user = NULL; local
608 if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user);
609 oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
611 strcpy(oldest_user, user);
626 return(oldest_user);
/openjdk10/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp507 char* oldest_user = NULL; local
596 if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user);
597 oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
599 strcpy(oldest_user, user);
614 return(oldest_user);
/openjdk10/hotspot/src/os/aix/vm/
H A DperfMemory_aix.cpp603 char* oldest_user = NULL; local
690 if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user);
691 oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
693 strcpy(oldest_user, user);
708 return(oldest_user);

Completed in 87 milliseconds