Home | History | Annotate | Download | only in preload

Lines Matching refs:Operation

46     /** Maps thread ID to operation stack. */
47 transient final Map<Integer, LinkedList<Operation>> stacks
48 = new HashMap<Integer, LinkedList<Operation>>();
54 final List<Operation> operations = new ArrayList<Operation>();
84 * Starts an operation.
86 * @param threadId thread the operation started in
87 * @param loadedClass class operation happened to
88 * @param time the operation started
91 Operation.Type type) {
92 Operation o = new Operation(
96 LinkedList<Operation> stack = stacks.get(threadId);
98 stack = new LinkedList<Operation>();
110 * Ends an operation.
112 * @param threadId thread the operation ended in
113 * @param loadedClass class operation happened to
114 * @param time the operation ended
116 Operation endOperation(int threadId, String className,
118 LinkedList<Operation> stack = stacks.get(threadId);
125 Operation o = stack.getLast();
138 * Prints an error indicating that we saw the end of an operation but not
143 System.err.println("Warning: An operation ended on " + name