Searched refs:arg_length_max (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.hpp97 arg_length_max = 1024, // maximum length of argument enumerator in enum:AttachOperation::__anon460
107 char _arg[arg_count_max][arg_length_max+1];
130 assert(strlen(arg) <= arg_length_max, "exceeds maximum argument length");
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp190 if (strlen(arg0) > AttachOperation::arg_length_max) return ATTACH_ERROR_ILLEGALARG;
191 if (strlen(arg0) > AttachOperation::arg_length_max) return ATTACH_ERROR_ILLEGALARG;
/openjdk7/hotspot/src/os/bsd/vm/
H A DattachListener_bsd.cpp248 AttachOperation::arg_count_max*(AttachOperation::arg_length_max + 1);
313 if (strlen(arg) > AttachOperation::arg_length_max) {
/openjdk7/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp243 AttachOperation::arg_count_max*(AttachOperation::arg_length_max + 1);
308 if (strlen(arg) > AttachOperation::arg_length_max) {
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp262 if (strlen(arg) > AttachOperation::arg_length_max) {

Completed in 36 milliseconds