Lines Matching refs:results

124         final Object[] results = new Object[threads.length];  in testRacyLoader()  local
136 results[my_index] = get.invoke(null); in testRacyLoader()
138 results[my_index] = ite.getCause(); in testRacyLoader()
140 results[my_index] = t; in testRacyLoader()
150 dumpResultStats(results, 1); in testRacyLoader()
158 final Object[] results = new Object[threads.length]; in testRacyLoader2() local
173 results[my_index] = get.invoke(null); in testRacyLoader2()
175 results[my_index] = ite.getCause(); in testRacyLoader2()
177 results[my_index] = t; in testRacyLoader2()
187 dumpResultStats(results, 2); in testRacyLoader2()
195 final Object[] results = new Object[threads.length]; in testRacyMisbehavingLoader() local
208 results[my_index] = get.invoke(null); in testRacyMisbehavingLoader()
210 results[my_index] = ite.getCause(); in testRacyMisbehavingLoader()
212 results[my_index] = t; in testRacyMisbehavingLoader()
222 dumpResultStats(results, 1); in testRacyMisbehavingLoader()
230 final Object[] results = new Object[threads.length]; in testRacyMisbehavingLoader2() local
243 results[my_index] = get.invoke(null); in testRacyMisbehavingLoader2()
245 results[my_index] = ite.getCause(); in testRacyMisbehavingLoader2()
247 results[my_index] = t; in testRacyMisbehavingLoader2()
257 dumpResultStats(results, 1); in testRacyMisbehavingLoader2()
261 private static void dumpResultStats(Object[] results, int expected_unique) throws Exception { in dumpResultStats() argument
265 for (int i = 0; i != results.length; ++i) { in dumpResultStats()
266 Object r = results[i]; in dumpResultStats()
276 Object rj = results[j]; in dumpResultStats()
277 if (isClassPair(results[j]) && getSecond(results[j]) == ref) { in dumpResultStats()
284 System.out.println("total: " + results.length); in dumpResultStats()
291 for (int i = 0; i != results.length; ++i) { in dumpResultStats()
292 Object r = results[i]; in dumpResultStats()