Lines Matching refs:operations
619 Operation[] operations = new Operation[operationsPerThread]; in runTest() local
626 if (o == operations.length) { in runTest()
629 operations[o] = op; in runTest()
635 Collections.shuffle(Arrays.asList(operations)); in runTest()
637 ? new Main(lock, t, operations) in runTest()
638 : new Daemon(lock, t, operations, mainThread, startBarrier); in runTest()
645 Operation[] operations = threadStresses[t].operations; in runTest() local
647 for (Operation operation : operations) { in runTest()
753 protected final Operation[] operations; field in Main
759 private Main(Object lock, int id, Operation[] operations) { in Main() argument
762 this.operations = operations; in Main()
770 while (nextOperation < operations.length) { in run()
771 Operation operation = operations[nextOperation]; in run()
792 Operation[] operations, in Daemon() argument
795 super(lock, id, operations); in Daemon()
809 Operation operation = operations[i]; in run()
818 i = (i + 1) % operations.length; in run()