Home | History | Annotate | Download | only in android

Lines Matching refs:logcat

323         # Clear logcat
324 # os.system('{} logcat -s {} -c'.format(adb, DEVICE));
327 # Dump logcat output
328 logcat_cmd = 'adb -s {} logcat'.format(self.target.adb_name)
329 logcat = Popen(logcat_cmd, shell=True, stdout=PIPE)
331 logcat_poll.register(logcat.stdout, select.POLLIN)
333 # Monitor logcat until it's idle for the specified number of [s]
335 self._log.info(' i.e. at least %d[s] of no logcat messages', seconds)
341 line = logcat.stdout.readline(1024)
345 self._log.warning('device logcat seems quite busy, '