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

1 2

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
ILogCatBufferChangeListener.java 17 package com.android.ddmuilib.logcat;
22 * Listeners interested in changes in the logcat buffer should implement this interface.
26 * Called when the logcat buffer changes.
27 * @param addedMessages list of messages that were added to the logcat buffer
28 * @param deletedMessages list of messages that were removed from the logcat buffer
ILogCatMessageSelectionListener.java 16 package com.android.ddmuilib.logcat;
19 * Classes interested in listening to user selection of logcat
LogCatFilterContentProvider.java 16 package com.android.ddmuilib.logcat;
24 * A JFace content provider for logcat filter list, used in {@link LogCatPanel}.
LogCatFilterLabelProvider.java 16 package com.android.ddmuilib.logcat;
23 * A JFace label provider for the LogCat filters. It expects elements of type
LogColors.java 17 package com.android.ddmuilib.logcat;
LogCatMessageParser.java 17 package com.android.ddmuilib.logcat;
27 * Class to parse raw output of {@code adb logcat -v long} to {@link LogCatMessage} objects.
38 * 'logcat -v long'. The first line represents the date, tag, severity, etc.. while the
57 * logcat messages.
58 * @param lines list of raw strings obtained from logcat -v long
LogCatPidToNameMapper.java 16 package com.android.ddmuilib.logcat;
LogCatReceiverFactory.java 16 package com.android.ddmuilib.logcat;
53 }, "Remove logcat receiver for " + device.getSerialNumber());
68 * Remove existing logcat receivers. This method should not be called from a DDMS thread
LogCatStackTraceParser.java 16 package com.android.ddmuilib.logcat;
LogCatMessage.java 17 package com.android.ddmuilib.logcat;
22 * Model a single log message output from {@code logcat -v long}.
23 * A logcat message has a {@link LogLevel}, the pid (process id) of the process
LogCatMessageList.java 17 package com.android.ddmuilib.logcat;
31 "logcat.messagelist.max.size";
LogCatFilterSettingsSerializer.java 16 package com.android.ddmuilib.logcat;
26 * Users can create multiple filters in the logcat view. These filters could have regexes
82 * Decode an encoded string representing the settings of a list of logcat
LogCatFilter.java 16 package com.android.ddmuilib.logcat;
27 * A Filter for logcat messages. A filter can be constructed to match
28 * different fields of a logcat message. It can then be queried to see if
64 * Construct a filter with the provided restrictions for the logcat message. All the text
69 * @param tag value for the logcat message's tag field.
70 * @param text value for the logcat message's text field.
71 * @param pid value for the logcat message's pid field.
72 * @param appName value for the logcat message's app name field.
73 * @param logLevel value for the logcat message's log level. Only messages of
141 * each collected logcat message. To search in a different field, the word could be prefixe
    [all...]
LogCatReceiver.java 17 package com.android.ddmuilib.logcat;
33 * A class to monitor a device for logcat messages. It stores the received
37 private static final String LOGCAT_COMMAND = "logcat -v long";
52 * Construct a LogCat message receiver for provided device. This will launch a
53 * logcat command on the device, and monitor the output of that command in
54 * a separate thread. All logcat messages are then stored in a circular
56 * @param device device to monitor for logcat messages
77 /* stop the current logcat command */
119 Log.e("Unexpected error while launching logcat. Try reselecting the device.",
124 t.setName("LogCat output receiver for " + mCurrentDevice.getSerialNumber())
    [all...]
LogCatFilterSettingsDialog.java 16 package com.android.ddmuilib.logcat;
41 * Dialog used to create or edit settings for a logcat filter.
44 private static final String TITLE = "Logcat Message Filter Settings";
46 "Filter logcat messages by the source's tag, pid or minimum log level.\n"
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 */
430 // log the error and keep going. Content of the logcat table maybe unexpected
LogPanel.java 17 package com.android.ddmuilib.logcat;
99 * 'logcat -v long'. The first line represents the date, tag, severity, etc.. while the
138 * Circular buffer containing the logcat output. This is unfiltered.
167 /** Device currently running logcat */
217 * specifically a logcat command in this case
489 * Starts a new logcat and set mCurrentLogCat as the current receiver.
490 * @param device the device to connect logcat to.
497 // if we have a logcat already running
509 // start the logcat in a different thread
510 new Thread("Logcat") { //$NON-NLS-1
    [all...]
  /sdk/ddms/libs/ddmuilib/tests/src/com/android/ddmuilib/logcat/
LogCatFilterTest.java 16 package com.android.ddmuilib.logcat;
LogCatMessageParserTest.java 16 package com.android.ddmuilib.logcat;
LogCatStackTraceParserTest.java 16 package com.android.ddmuilib.logcat;
RollingBufferFindTest.java 17 package com.android.ddmuilib.logcat;
LogCatFilterSettingsSerializerTest.java 16 package com.android.ddmuilib.logcat;
  /system/core/adb/
commandline.c 114 " adb logcat [ <filter-spec> ] - View device log\n"
190 " ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.\n"
629 static int logcat(transport_type transport, char* serial, int argc, char **argv) function
640 "shell:export ANDROID_LOG_TAGS=\"\%s\" ; exec logcat",
    [all...]
  /system/core/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...]

Completed in 212 milliseconds

1 2