Searched defs:pelements (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1913 char** pelements = split_path(pname, &n); local
1916 if (pelements[i] == NULL || strlen(pelements[i]) == 0) {
1920 pelements[i], fname);
1927 if (pelements[i] != NULL) {
1928 FREE_C_HEAP_ARRAY(char, pelements[i], mtInternal);
1931 if (pelements != NULL) {
1932 FREE_C_HEAP_ARRAY(char*, pelements, mtInternal);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1675 char** pelements = split_path(pname, &n); local
1678 if (pelements[i] == NULL || strlen(pelements[i]) == 0) {
1681 snprintf(buffer, buflen, "%s/lib%s.so", pelements[i], fname);
1688 if (pelements[i] != NULL) {
1689 FREE_C_HEAP_ARRAY(char, pelements[i], mtInternal);
1692 if (pelements != NULL) {
1693 FREE_C_HEAP_ARRAY(char*, pelements, mtInternal);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1913 char** pelements = split_path(pname, &n); local
1916 if (pelements[i] == NULL || strlen(pelements[i]) == 0) {
1919 snprintf(buffer, buflen, "%s/lib%s.so", pelements[i], fname);
1926 if (pelements[i] != NULL) {
1927 FREE_C_HEAP_ARRAY(char, pelements[i], mtInternal);
1930 if (pelements != NULL) {
1931 FREE_C_HEAP_ARRAY(char*, pelements, mtInternal);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp1169 char** pelements = split_path(pname, &n); local
1171 char* path = pelements[i];
1189 if (pelements[i] != NULL) {
1190 FREE_C_HEAP_ARRAY(char, pelements[i], mtInternal);
1193 if (pelements != NULL) {
1194 FREE_C_HEAP_ARRAY(char*, pelements, mtInternal);

Completed in 82 milliseconds