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

1 2

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
ILogCatMessageEventListener.java 17 package com.android.ddmuilib.logcat;
25 /** Called on reception of logcat messages.
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
LogCatMessageContentProvider.java 17 package com.android.ddmuilib.logcat;
23 * A JFace content provider for the LogCat log messages, used in the {@link LogCatPanel}.
LogCatViewerFilter.java 16 package com.android.ddmuilib.logcat;
22 * A JFace {@link ViewerFilter} for the {@link LogCatPanel} displaying logcat messages.
29 * Construct a {@link ViewerFilter} filtering logcat messages based on
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;
LogCatMessageList.java 17 package com.android.ddmuilib.logcat;
29 "logcat.messagelist.max.size";
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
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
LogCatMessageLabelProvider.java 17 package com.android.ddmuilib.logcat;
28 * A JFace Column label provider for the LogCat log messages. It expects elements of type
53 * Construct a column label provider for the logcat table.
124 * Obtain the tool tip to show for a particular logcat message.
LogCatReceiver.java 17 package com.android.ddmuilib.logcat;
31 * A class to monitor a device for logcat messages. It stores the received
35 private static final String LOGCAT_COMMAND = "logcat -v long";
47 * Construct a LogCat message receiver for provided device. This will launch a
48 * logcat command on the device, and monitor the output of that command in
49 * a separate thread. All logcat messages are then stored in a circular
51 * @param device device to monitor for logcat messages
72 /* stop the current logcat command */
110 Log.e("Unexpected error while launching logcat. Try reselecting the device.",
115 t.setName("LogCat output receiver for " + mCurrentDevice.getSerialNumber())
    [all...]
LogCatFilter.java 16 package com.android.ddmuilib.logcat;
28 * A Filter for logcat messages. A filter can be constructed to match
29 * different fields of a logcat message. It can then be queried to see if
65 * Construct a filter with the provided restrictions for the logcat message. All the text
70 * @param tag value for the logcat message's tag field.
71 * @param text value for the logcat message's text field.
72 * @param pid value for the logcat message's pid field.
73 * @param appName value for the logcat message's app name field.
74 * @param logLevel value for the logcat message's log level. Only messages of
148 * each collected logcat message. To search in a different field, the word could be prefixe
    [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
  /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;
LogCatFilterSettingsSerializerTest.java 16 package com.android.ddmuilib.logcat;
  /system/core/adb/
commandline.c 113 " adb logcat [ <filter-spec> ] - View device log\n"
188 " ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.\n"
627 static int logcat(transport_type transport, char* serial, int argc, char **argv) function
638 "shell:export ANDROID_LOG_TAGS=\"\%s\" ; exec logcat",
    [all...]

Completed in 212 milliseconds

1 2