Lines Matching full:threads
10 * tokens are converted into a hierarchy of processes, threads,
77 * itself and so is only associated with Threads at its start and end point.
219 * Comparison between threads that orders first by pid,
331 this.threads = {};
338 for (var p in this.threads) {
349 for (var tid in this.threads)
350 this.threads[tid].shiftTimestampsForward(amount);
360 if (!this.threads[tid])
361 this.threads[tid] = new TimelineThread(this, tid);
362 return this.threads[tid];
820 * the TimelineModel as processes, threads, and slices.
824 * Removes threads from the model that are fully empty.
830 for (var tid in process.threads) {
831 var thread = process.threads[tid];
836 // purposes of pruning, such threads need to be treated as having
845 process.threads = prunedThreads;
854 var threads = this.getAllThreads();
855 for (var tI = 0; tI < threads.length; tI++) {
856 var thread = threads[tI];
909 var threads = [];
912 for (var tid in process.threads) {
913 threads.push(process.threads[tid]);
916 return threads;