HomeSort by relevance Sort by last modified time
    Searched defs:logcat (Results 1 - 6 of 6) sorted by null

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogColors.java 17 package com.android.ddmuilib.logcat;
EditFilterDialog.java 17 package com.android.ddmuilib.logcat;
LogFilter.java 17 package com.android.ddmuilib.logcat;
22 import com.android.ddmuilib.logcat.LogPanel.LogMessage;
34 /** logcat output filter class */
429 // log the error and keep going. Content of the logcat table maybe unexpected
LogPanel.java 17 package com.android.ddmuilib.logcat;
96 * 'logcat -v long'. The first line represents the date, tag, severity, etc.. while the
135 * Circular buffer containing the logcat output. This is unfiltered.
164 /** Device currently running logcat */
212 * specifically a logcat command in this case
474 * Starts a new logcat and set mCurrentLogCat as the current receiver.
475 * @param device the device to connect logcat to.
482 // if we have a logcat already running
494 // start the logcat in a different thread
495 new Thread("Logcat") { //$NON-NLS-1
    [all...]
  /system/core/adb/
commandline.c 119 " adb logcat [ <filter-spec> ] - View device log\n"
178 " ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.\n"
508 static int logcat(transport_type transport, char* serial, int argc, char **argv) function
519 "shell:export ANDROID_LOG_TAGS=\"\%s\" ; exec logcat",
1063 if(!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat")) {
1064 return logcat(ttype, serial, argc, argv);
    [all...]
  /system/core/logcat/
logcat.cpp 292 perror("logcat read");
581 /* this is a *hidden* option used to start a version of logcat */
582 /* in an emulated device only. it basically looks for androidboot.logcat= */
586 #define KERNEL_OPTION "androidboot.logcat="
590 char* logcat; local
605 logcat = strstr( cmdline, KERNEL_OPTION );
607 if (logcat != NULL) {
608 char* p = logcat + sizeof(KERNEL_OPTION)-1;;
634 fprintf(stderr, "logcat using %s (%d)\n", devname, len);
694 fprintf (stderr, "Invalid filter expression in -logcat option\n")
    [all...]

Completed in 236 milliseconds