/external/chromium_org/build/android/ |
adb_run_mojo_shell | 11 adb logcat -c 16 adb logcat -s MojoShellApplication MojoShellActivity chromium
|
asan_symbolize.py | 91 parser.add_option('-l', '--logcat', 92 help='File containing adb logcat output with ASan stacks. ' 95 if options.logcat: 96 input = file(options.logcat, 'r')
|
/system/core/logcat/ |
Android.mk | 6 LOCAL_SRC_FILES:= logcat.cpp event.logtags 10 LOCAL_MODULE:= logcat
|
logcat.cpp | 292 perror("logcat read"); 587 /* this is a *hidden* option used to start a version of logcat */ 588 /* in an emulated device only. it basically looks for androidboot.logcat= */ 592 #define KERNEL_OPTION "androidboot.logcat=" 596 char* logcat; local 611 logcat = strstr( cmdline, KERNEL_OPTION ); 613 if (logcat != NULL) { 614 char* p = logcat + sizeof(KERNEL_OPTION)-1;; 640 fprintf(stderr, "logcat using %s (%d)\n", devname, len); 700 fprintf (stderr, "Invalid filter expression in -logcat option\n") [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
LogCatView.java | 18 import com.android.ddmlib.logcat.LogCatMessage; 19 import com.android.ddmuilib.logcat.ILogCatMessageSelectionListener; 20 import com.android.ddmuilib.logcat.LogCatPanel; 21 import com.android.ddmuilib.logcat.LogCatStackTraceParser; 39 /** Switch perspective when a Java file is opened from logcat view. */ 42 /** Target perspective to open when a Java file is opened from logcat view. */
|
OldLogCatView.java | 21 import com.android.ddmuilib.logcat.LogColors; 22 import com.android.ddmuilib.logcat.LogFilter; 23 import com.android.ddmuilib.logcat.LogPanel; 24 import com.android.ddmuilib.logcat.LogPanel.ILogFilterStorageManager; 25 import com.android.ddmuilib.logcat.LogPanel.LogCatViewInterface; 67 DdmsPlugin.PLUGIN_ID + ".logcat.time"; //$NON-NLS-1$ 69 DdmsPlugin.PLUGIN_ID + ".logcat.level"; //$NON-NLS-1$ 71 DdmsPlugin.PLUGIN_ID + ".logcat.pid"; //$NON-NLS-1$ 73 DdmsPlugin.PLUGIN_ID + ".logcat.tag"; //$NON-NLS-1$ 75 DdmsPlugin.PLUGIN_ID + ".logcat.message"; //$NON-NLS-1 [all...] |
/prebuilts/devtools/tools/lib/ |
ddmuilib.jar | |
ddmlib.jar | |
ddms.jar | |
/build/target/product/ |
embedded.mk | 62 logcat \
|
/frameworks/base/core/tests/overlaytests/ |
runtests.sh | 36 $adb wait-for-device logcat -c 37 $adb wait-for-device logcat | grep -m 1 -e 'PowerManagerService.*bootCompleted' >/dev/null
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/ |
messages.properties | 50 DeviceView_Unable_Create_HPROF_For_Application=Unable to create HPROF file for application '%1$s'.\n\n%2$s Check logcat for more information. 73 LogCatPreferencePage_MaxMessages=Maximum number of logcat messages to buffer: 76 LogCatPreferencePage_AutoMonitorLogcat=Monitor logcat for messages from applications in workspace 77 LogCatPreferencePage_SessionFilterLogLevel=Show logcat view if message priority is atleast:
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
LogCatMonitor.java | 22 import com.android.ddmlib.logcat.LogCatMessage; 23 import com.android.ddmuilib.logcat.ILogCatBufferChangeListener; 24 import com.android.ddmuilib.logcat.LogCatReceiver; 25 import com.android.ddmuilib.logcat.LogCatReceiverFactory; 46 * LogCatMonitor helps in monitoring the logcat output from a set of devices. 47 * It scans through the received logcat messages, and activates the logcat view 51 public static final String AUTO_MONITOR_PREFKEY = "ddms.logcat.automonitor"; //$NON-NLS-1$ 52 public static final String AUTO_MONITOR_LOGLEVEL = "ddms.logcat.auotmonitor.level"; //$NON-NLS-1$ 53 private static final String AUTO_MONITOR_PROMPT_SHOWN = "ddms.logcat.automonitor.userprompt"; //$NON-NLS-1 [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/ |
LogCatColorsPage.java | 19 import com.android.ddmuilib.logcat.LogCatPanel;
|
LogCatPreferencePage.java | 20 import com.android.ddmuilib.logcat.LogCatMessageList; 21 import com.android.ddmuilib.logcat.LogCatPanel; 42 * Preference Pane for LogCat.
|
/system/extras/tests/ext4/ |
android_emmc_perf_tests.sh | 166 # Get the current number of FSTRIM complete lines in thh logcat 167 ORIGCNT=`adb shell logcat -d | grep -c "Finished fstrim work"` 177 NEWCNT=`adb shell logcat -d |grep -c "Finished fstrim work"` 187 NEWCNT=`adb shell logcat -d |grep -c "Finished fstrim work"`
|
/external/qemu/android/ |
main.c | 167 * for logcat or 'shell' 878 if (!opts->logcat || opts->logcat[0] == 0) { 879 opts->logcat = getenv("ANDROID_LOG_TAGS"); 880 if (opts->logcat && opts->logcat[0] == 0) 881 opts->logcat = NULL; 889 /* XXXX: TODO: implement -shell and -logcat through qemud instead */ 900 if (opts->shell || opts->logcat) { 1011 if (opts->shell || opts->logcat) { [all...] |
cmdline-options.h | 105 OPT_PARAM( logcat, "<tags>", "enable logcat output with given tags" )
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
android_browser_backend.py | 262 self._adb.RunShellCommand('logcat -c') 378 return '\n'.join(self._adb.RunShellCommand('logcat -d -t 500')) 383 # Get the last lines of logcat (large enough to contain stacktrace) 384 logcat = self.GetStandardOutput() 385 ret = Decorate('Logcat', logcat) 388 # Try to symbolize logcat. 392 ret += Decorate('Stack from Logcat', p.communicate(input=logcat)[0])
|
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/ |
ddmlib-22.2.0.jar | |
/prebuilts/misc/common/ddmlib/ |
ddmlib-prebuilt.jar | |
/bootable/diskinstaller/ |
config.mk | 17 logcat \
|
/system/core/adb/ |
commandline.c | 118 " adb logcat [ <filter-spec> ] - View device log\n" 205 " ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.\n" 644 static int logcat(transport_type transport, char* serial, int argc, char **argv) function 655 "shell:export ANDROID_LOG_TAGS=\"\%s\" ; exec logcat", [all...] |
/external/chromium_org/build/android/pylib/ |
android_commands.py | 318 # EnableAdbRoot inserts a call for wait-for-device only when adb logcat [all...] |
/frameworks/base/services/java/com/android/server/am/ |
ActivityManagerService.java | [all...] |