Searched refs:name_length_max (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.hpp96 name_length_max = 16, // maximum length of name enumerator in enum:AttachOperation::__anon460
106 char _name[name_length_max+1];
114 assert(strlen(name) <= name_length_max, "exceeds maximum name length");
H A DattachListener.cpp379 // names must be of length <= AttachOperation::name_length_max
428 assert(strlen(name) <= AttachOperation::name_length_max, "operation <= name_length_max");
/openjdk7/hotspot/src/os/bsd/vm/
H A DattachListener_bsd.cpp247 const int max_len = (sizeof(ver_str) + 1) + (AttachOperation::name_length_max + 1) +
302 if (name == NULL || strlen(name) > AttachOperation::name_length_max) {
/openjdk7/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp242 const int max_len = (sizeof(ver_str) + 1) + (AttachOperation::name_length_max + 1) +
297 if (name == NULL || strlen(name) > AttachOperation::name_length_max) {
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp189 if (strlen(cmd) > AttachOperation::name_length_max) return ATTACH_ERROR_ILLEGALARG;
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp251 if (name == NULL || strlen(name) > AttachOperation::name_length_max) {

Completed in 38 milliseconds