/development/apps/Development/src/com/android/development/ |
LogViewer.java | 62 new Thread(new LogReader()).start(); 75 private class LogReader implements Runnable { 84 public LogReader() throws IOException {
|
/external/v8/tools/ |
logreader.js | 43 function LogReader(dispatchTable, timedRange, pairwiseTimedRange) { 93 LogReader.prototype.printError = function(str) { 103 LogReader.prototype.processLogChunk = function(chunk) { 113 LogReader.prototype.processLogLine = function(line) { 147 LogReader.prototype.processStack = function(pc, func, stack) { 174 LogReader.prototype.skipDispatch = function(dispatch) { 188 LogReader.prototype.dispatchLogRow_ = function(fields) { 226 LogReader.prototype.processLog_ = function(lines) { 238 LogReader.prototype.processLogLine_ = function(line) {
|
dumpcpp.js | 6 LogReader.call(this, { 15 inherits(CppProcessor, LogReader);
|
ll_prof.py | 331 class LogReader(object): 354 assert self.arch in LogReader._ARCH_TO_POINTER_TYPE_MAP, \ 356 pointer_type = LogReader._ARCH_TO_POINTER_TYPE_MAP[self.arch] 358 self.code_create_struct = LogReader._DefineStruct([ 363 self.code_move_struct = LogReader._DefineStruct([ 367 self.code_delete_struct = LogReader._DefineStruct([ 375 if tag == LogReader._CODE_MOVING_GC_TAG: 378 if tag == LogReader._CODE_CREATE_TAG: 395 LogReader._HandleCodeConflict(conficting_code, code) 404 if tag == LogReader._CODE_MOVE_TAG [all...] |
ic-processor.js | 37 LogReader.call(this, { 72 inherits(IcProcessor, LogReader);
|
map-processor.js | 6 class MapProcessor extends LogReader {
|
tickprocessor.js | 104 LogReader.call(this, { 213 inherits(TickProcessor, LogReader);
|
/external/autotest/client/cros/ |
login.py | 29 @param log_reader: LogReader object set up to watch appropriate log file. 55 log_reader = cros_logging.LogReader()
|
cros_logging.py | 215 class LogReader(AbstractLogReader): 226 raise error.TestError('LogReader created without ' + 294 This will create JournalLogReader() or LogReader() depending on 300 return LogReader()
|
/external/autotest/client/site_tests/logging_AsanCrash/ |
logging_AsanCrash.py | 49 ui_log = cros_logging.LogReader(asan_log_name)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_hotshot.py | 26 class UnlinkingLogReader(hotshot.log.LogReader):
27 """Extend the LogReader so the log file is unlinked when we're
32 hotshot.log.LogReader.__init__(self, logfn)
36 return hotshot.log.LogReader.next(self)
134 self.assertRaises((IOError, EOFError), _hotshot.logreader,
|
/external/python/cpython2/Lib/test/ |
test_hotshot.py | 26 class UnlinkingLogReader(hotshot.log.LogReader): 27 """Extend the LogReader so the log file is unlinked when we're 32 hotshot.log.LogReader.__init__(self, logfn) 36 return hotshot.log.LogReader.next(self) 134 self.assertRaises((IOError, EOFError), _hotshot.logreader,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/ |
stats.py | 27 log = hotshot.log.LogReader(self._logfn)
|
log.py | 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"]
23 class LogReader:
30 self._reader = _hotshot.logreader(logfn)
64 calling LogReader.__init__().
|
/external/autotest/client/site_tests/desktopui_HangDetector/ |
desktopui_HangDetector.py | 50 reader = cros_logging.LogReader()
|
/external/python/cpython2/Lib/hotshot/ |
stats.py | 27 log = hotshot.log.LogReader(self._logfn)
|
log.py | 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"] 23 class LogReader: 30 self._reader = _hotshot.logreader(logfn) 64 calling LogReader.__init__().
|
/external/autotest/client/site_tests/desktopui_FlashSanityCheck/ |
desktopui_FlashSanityCheck.py | 126 self._messages_log_reader = cros_logging.LogReader() 128 self._ui_log_reader = cros_logging.LogReader('/var/log/ui/ui.LATEST')
|
/external/autotest/client/site_tests/graphics_Idle/ |
graphics_Idle.py | 97 reader = cros_logging.LogReader() 127 reader = cros_logging.LogReader()
|
/external/autotest/client/site_tests/graphics_Idle_P/ |
graphics_Idle_P.py | 97 reader = cros_logging.LogReader() 127 reader = cros_logging.LogReader()
|
/external/autotest/client/site_tests/usbpd_GFU/ |
usbpd_GFU.py | 245 self._reader = cros_logging.LogReader()
|
/external/autotest/client/site_tests/platform_PrinterPpds/ |
log_reader.py | 23 class LogReader():
|
platform_PrinterPpds.py | 116 self._log_reader = log_reader.LogReader()
|
/external/autotest/client/site_tests/graphics_dEQP/ |
graphics_dEQP.py | 582 # LogReader works on /var/log/messages by default. 583 self._log_reader = cros_logging.LogReader()
|
/external/v8/tools/profviz/ |
composer.js | 310 var logreader = new LogReader( 335 for (var s of line.split("\n")) logreader.processLogLine(s);
|