Searched defs:maxInstances (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DReferenceType.java703 * @param maxInstances the maximum number of instances to return.
712 * @throws java.lang.IllegalArgumentException if maxInstances is less
716 List<ObjectReference> instances(long maxInstances); argument
/openjdk7/jdk/src/share/back/
H A DReferenceTypeImpl.c233 jint maxInstances; local
244 maxInstances = inStream_readInt(in);
253 error = classInstances(clazz, &batch, maxInstances);
H A Dutil.c2407 jint maxInstances; member in struct:ClassInstancesData
2429 if ( data->maxInstances != 0 && data->instCount >= data->maxInstances ) {
2446 classInstances(jclass klass, ObjectBatch *instances, int maxInstances) argument
2459 if ( maxInstances < 0 || instances == NULL) {
2475 data.maxInstances = maxInstances;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DReferenceTypeImpl.java735 public List instances(long maxInstances) { argument
741 if (maxInstances < 0) {
742 throw new IllegalArgumentException("maxInstances is less than zero: "
743 + maxInstances);
752 final long max = maxInstances;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DReferenceTypeImpl.java914 public List<ObjectReference> instances(long maxInstances) { argument
920 if (maxInstances < 0) {
921 throw new IllegalArgumentException("maxInstances is less than zero: "
922 + maxInstances);
924 int intMax = (maxInstances > Integer.MAX_VALUE)?
925 Integer.MAX_VALUE: (int)maxInstances;

Completed in 45 milliseconds