Home | History | Annotate | Download | only in trace_model

Lines Matching full:process

8  * @fileoverview Provides the Process class.
13 * The Process represents a single userland process in the
17 function Process(model, pid) {
32 Process.compare = function(x, y) {
51 Process.prototype = {
55 return Process.compare(this, that);
67 res = 'Process ' + this.pid;
97 Process: Process