Home | History | Annotate | Download | only in js

Lines Matching refs:log

56      * Profiler log position.
62 * Last requested log position.
68 * Whether log contents retrieval must be forced next time.
143 * Requests the next chunk of log lines.
200 // Start to query log data.
210 * Handles a portion of a profiler log retrieved by getLogLines call.
211 * @param {number} pos Current position in log.
212 * @param {string} log A portion of profiler log.
214 devtools.ProfilerAgent.prototype._didGetLogLines = function(pos, log)
217 if (log.length > 0)
218 this._profilerProcessor.processLogChunk(log);
223 // No new data and profiling is stopped---suspend log reading.