Lines Matching defs:array

526 // Returns an array of java.lang.String object containing the input arguments to the VM.
555 // Returns an array of java/lang/management/MemoryPoolMXBean object
557 // an array of memory pools for a given memory manager if
600 // Returns an array of java/lang/management/MemoryManagerMXBean object
602 // an array of memory managers for a given memory pool if
795 // Gets an array containing the amount of memory allocated on the Java
796 // heap for a set of threads (in bytes). Each element of the array is
798 // corresponding entry in the given array of thread IDs; or -1 if the
814 // validate the thread id array
817 // sizeArray must be of the same length as the given array of thread IDs
821 "The length of the given long array does not match the length of "
822 "the given array of thread IDs");
1090 // Gets the value of all attributes specified in the given array
1091 // and sets the value in the result array.
1121 typeArrayHandle ids_ah, // array of thread ID (long[])
1128 // First get an array of threadObj handles.
1152 // Gets an array of ThreadInfo objects. Each element is the ThreadInfo
1154 // the given array of thread IDs; or NULL if the thread does not exist
1158 // ids - array of thread IDs
1162 // infoArray - array of ThreadInfo objects
1184 // validate the thread id array
1190 // infoArray must be of the same length as the given array of thread IDs
1194 "The length of the given ThreadInfo array does not match the length of the given array of thread IDs", -1);
1258 // It returns an array of ThreadInfo objects. Each element is the ThreadInfo
1260 // the given array of thread IDs; or NULL if the thread does not exist
1264 // ids - array of thread IDs; NULL indicates all live threads
1284 // validate the thread id array
1341 objArrayOop array = oopFactory::new_objArray(SystemDictionary::Object_klass(), num_locked_monitors, CHECK_NULL);
1342 objArrayHandle mh(THREAD, array);
1383 objArrayOop array = oopFactory::new_objArray(SystemDictionary::Object_klass(), num_locked_synchronizers, CHECK_NULL);
1384 objArrayHandle sh(THREAD, array);
1404 // Returns an array of Class objects.
1566 // Gets an array containing the CPU times consumed by a set of threads
1567 // (in nanoseconds). Each element of the array is the CPU time for the
1568 // thread ID specified in the corresponding entry in the given array
1588 // validate the thread id array
1591 // timeArray must be of the same length as the given array of thread IDs
1595 "The length of the given long array does not match the length of "
1596 "the given array of thread IDs");
1609 // Returns a String array of all VM global flag names
1613 // allocate a temp array
1629 // Return array of right length
1701 // Fill globals array of count length with jmmVMGlobal entries
1702 // specified by names. If names == NULL, fill globals array
1705 // If a Flag with a given name in an array element does not
1723 // Make sure we have a String array
1852 // skip if the result array is not big enough
1887 // If an array is not large enough to hold all the entries, only the entries
1899 // Make sure we have a String array
1953 // Returns an array of Thread objects which are in deadlock, if any.
1965 // Returns an array of Thread objects which are in deadlock, if any.
1977 // info - caller allocated array of jmmExtAttributeInfo
1978 // count - number of elements of the info array
1980 // Returns the number of GC extension attributes filled in the info array; or
1999 // verify the given array is an array of java/lang/management/MemoryUsage objects
2001 static objArrayOop get_memory_usage_objArray(jobjectArray array, int length, TRAPS) {
2002 if (array == NULL) {
2006 objArrayOop oa = objArrayOop(JNIHandles::resolve_non_null(array));
2009 // array must be of the given length
2012 "The length of the given MemoryUsage array does not match the number of memory pools.", 0);
2015 // check if the element of array is of type MemoryUsage class
2030 // a. before_gc_usage - array of MemoryUsage objects
2031 // b. after_gc_usage - array of MemoryUsage objects
2033 // gc_ext_attribute_values array allocated
2034 // d. gc_ext_attribute_values is a caller allocated array of jvalue.
2043 // the gc_ext_attribute_values array is filled; or
2044 // -1 if the gc_ext_attributes_values array is not big enough
2160 // Make sure we have a String array
2218 GrowableArray<DCmdArgumentInfo*>* array = dcmd->argument_info_array();
2219 if (array->length() == 0) {
2222 for (int i = 0; i < array->length(); i++) {
2223 infoArray[i].name = array->at(i)->name();
2224 infoArray[i].description = array->at(i)->description();
2225 infoArray[i].type = array->at(i)->type();
2226 infoArray[i].default_string = array->at(i)->default_string();
2227 infoArray[i].mandatory = array->at(i)->is_mandatory();
2228 infoArray[i].option = array->at(i)->is_option();
2229 infoArray[i].position = array->at(i)->position();