Home
last modified time | relevance | path

Searched refs:LogCatMonitor (Results 1 – 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
DLogCatPreferencePage.java24 import com.android.ide.eclipse.ddms.LogCatMonitor;
111 mAutoMonitorLogcat = new BooleanFieldEditor(LogCatMonitor.AUTO_MONITOR_PREFKEY, in createAdtSpecificFieldEditors()
116 mAutoMonitorLogcatLevel = new ComboFieldEditor(LogCatMonitor.AUTO_MONITOR_LOGLEVEL, in createAdtSpecificFieldEditors()
128 getPreferenceStore().getBoolean(LogCatMonitor.AUTO_MONITOR_PREFKEY), in createAdtSpecificFieldEditors()
DPreferenceInitializer.java23 import com.android.ide.eclipse.ddms.LogCatMonitor;
134 store.setDefault(LogCatMonitor.AUTO_MONITOR_PREFKEY, true); in initializeDefaultPreferences()
135 store.setDefault(LogCatMonitor.AUTO_MONITOR_LOGLEVEL, LogLevel.VERBOSE.getStringValue()); in initializeDefaultPreferences()
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DLogCatMonitor.java50 public class LogCatMonitor { class
67 public LogCatMonitor(IDebuggerConnector[] debuggerConnectors, IPreferenceStore prefStore) { in LogCatMonitor() method in LogCatMonitor
DDdmsPlugin.java863 private LogCatMonitor mLogCatMonitor;
866 mLogCatMonitor = new LogCatMonitor(getDebuggerConnectors(), getPreferenceStore()); in startLogCatMonitor()