Home | History | Annotate | Download | only in tools

Lines Matching refs:Dispatch

118  * Returns whether a particular dispatch must be skipped.
120 * @param {!Object} dispatch Dispatch record.
121 * @return {boolean} True if dispatch must be skipped.
123 LogReader.prototype.skipDispatch = function(dispatch) {
129 * Does a dispatch of a log record.
135 // Obtain the dispatch.
139 var dispatch = this.dispatchTable_[command];
141 if (dispatch === null || this.skipDispatch(dispatch)) {
147 for (var i = 0; i < dispatch.parsers.length; ++i) {
148 var parser = dispatch.parsers[i];
161 dispatch.processor.apply(this, parsedFields);