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

/openjdk7/jdk/test/com/sun/jdi/
H A DInstanceFilter.java76 int methodCount = 0; field in class:InstanceFilter
120 if (methodCount >= expectedMethods.length) {
122 } else if (methodStr.indexOf(expectedMethods[methodCount]) == -1) {
123 failure("FAILED: Expected method: " + expectedMethods[methodCount]);
125 methodCount++;
145 if (!testFailed && methodCount < expectedMethods.length) {
147 + methodCount);
/openjdk7/jdk/test/javax/management/remote/mandatory/threads/
H A DExecutorTest.java170 Integer count = executorHandler.methodCount.get(m);
223 final Map<Method, Integer> methodCount = field in class:ExecutorTest.CountInvocationHandler
233 synchronized (methodCount) {
234 Integer count = methodCount.get(method);
237 methodCount.put(method, count + 1);
/openjdk7/jdk/src/share/back/
H A DReferenceTypeImpl.c187 jint methodCount = 0; local
197 (gdata->jvmti, clazz, &methodCount, &methods);
203 (void)outStream_writeInt(out, methodCount);
204 for (i = 0; (i < methodCount) && !outStream_error(out); i++) {
/openjdk7/hotspot/agent/src/share/native/jvmdi/
H A Dsa.cpp403 jint methodCount; local
405 if (jvmdi->GetClassMethods(clazz, &methodCount, &methods) != JVMDI_ERROR_NONE) {
410 for (int j = 0; j < methodCount && !done; j++) {

Completed in 61 milliseconds