Home
last modified time | relevance | path

Searched refs:my_index (Results 1 – 3 of 3) sorted by relevance

/art/test/626-const-class-linking/src/
DRacyMisbehavingLoader.java62 int my_index = syncWithOtherInstances(count); in loadClass() local
64 if ((my_index & 1) == 0) { in loadClass()
66 result = defining_loaders[my_index & 1].loadClass(name, resolve); in loadClass()
73 result = defining_loaders[my_index & 1].loadClass("Test3", resolve); in loadClass()
81 int my_index; in syncWithOtherInstances() local
83 my_index = index; in syncWithOtherInstances()
97 return my_index; in syncWithOtherInstances()
DRacyLoader.java51 int my_index = syncWithOtherInstances(count); in loadClass() local
52 Class<?> result = defining_loaders[my_index & 1].loadClass(name, resolve); in loadClass()
60 int my_index; in syncWithOtherInstances() local
62 my_index = index; in syncWithOtherInstances()
76 return my_index; in syncWithOtherInstances()
DMain.java131 final int my_index = i; 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()
167 final int my_index = i; in testRacyLoader2() local
171 Class<?> helper = (my_index < threads.length / 2) ? helper1 : helper3; in testRacyLoader2()
173 results[my_index] = get.invoke(null); in testRacyLoader2()
175 results[my_index] = ite.getCause(); in testRacyLoader2()
177 results[my_index] = t; in testRacyLoader2()
203 final int my_index = i; in testRacyMisbehavingLoader() local
[all …]