Home
last modified time | relevance | path

Searched refs:logcat (Results 1 – 17 of 17) sorted by relevance

/development/cmds/monkey/src/com/android/commands/monkey/
DLogger.java29 if (logcat) {
39 if (logcat) {
46 public static boolean logcat = true; field in Logger
/development/tools/bugreport/src/com/android/bugreport/bugreport/
DBugreport.java20 import com.android.bugreport.logcat.Logcat;
21 import com.android.bugreport.logcat.LogLine;
62 public Logcat logcat; field in Bugreport
DBugreportParser.java19 import com.android.bugreport.logcat.LogcatParser;
/development/apps/DumpViewer/
DREADME.md3 DumpViewer is an on-device logcat / dumpsys viewer.
13 DumpViewer requires some development permissions in order to read logcat and dumpsys.
32 - Add color on logcat (by severity)
/development/tools/bugreport/src/com/android/bugreport/
DMain.java23 import com.android.bugreport.logcat.LogcatParser;
100 if (options.logcat != null) { in run()
103 bugreport.logcat = parser.parse(Lines.readLines(options.logcat)); in run()
DOptions.java64 public File logcat; field in Options
97 if (result.logcat != null || !argParser.hasData(1)) { in parseArgs()
101 result.logcat = new File(argParser.nextData()); in parseArgs()
/development/tools/bugreport/src/com/android/bugreport/inspector/
DInspector.java24 import com.android.bugreport.logcat.Logcat;
25 import com.android.bugreport.logcat.LogcatParser;
26 import com.android.bugreport.logcat.LogLine;
567 if (mBugreport.logcat != null) { in inventLogcatTimes()
568 inventLogcatTimes(mBugreport.logcat.lines); in inventLogcatTimes()
612 if (mBugreport.logcat != null) { in mergeLogcat()
621 final Logcat result = mBugreport.logcat = new Logcat(); in mergeLogcat()
738 final Logcat logcat = mBugreport.logcat; in makeInterestingLogcat() local
741 for (LogLine line: logcat.lines) { in makeInterestingLogcat()
761 final Logcat logcat = mBugreport.logcat; in markLogcatProcessesAndThreads() local
[all …]
/development/tools/bugreport/src/com/android/bugreport/logcat/
DLogLine.java17 package com.android.bugreport.logcat;
DLogcat.java17 package com.android.bugreport.logcat;
DLogcatParser.java17 package com.android.bugreport.logcat;
/development/scripts/
Dbash_util.bash45 do_adb logcat -t 1 | awk '(match($0, "^[0-9]")){print $1 " " $2}'
/development/tools/logblame/
Dpower_toggle_test11 adb logcat -P ""
Dapp_switch_test26 adb logcat -P ""
Dconnectivity_log_test10 adb logcat -P ""
Danalyze_logs.py161 logcat = subprocess.Popen(cmd, stdout=subprocess.PIPE)
162 infile = logcat.stdout
/development/samples/USB/AdbTest/
DREADME.txt2 Currently it only implements the "adb logcat" command and displays the log
/development/tools/bugreport/src/com/android/bugreport/html/
DRenderer.java23 import com.android.bugreport.logcat.Logcat;
24 import com.android.bugreport.logcat.LogLine;
503 final Logcat logcat = bugreport.logcat; in makeLogcatHdf() local
505 N = logcat.lines.size(); in makeLogcatHdf()
507 final LogLine line = logcat.lines.get(i); in makeLogcatHdf()