Home | History | Annotate | Download | only in preload

Lines Matching refs:Operation

22  * An operation with a duration. Could represent a class load or initialization.
24 class Operation implements Serializable {
29 * Type of operation.
35 /** Process this operation occurred in. */
38 /** Start time for this operation. */
41 /** Index of this operation relative to its process. */
44 /** Type of operation. */
47 /** End time for this operation. */
50 /** The class that this operation loaded or initialized. */
54 final List<Operation> subops = new ArrayList<Operation>();
56 /** Constructs a new operation. */
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos,
85 for (Operation child : subops) {
96 /** Gets the median time that this operation took across all processes. */