Home
last modified time | relevance | path

Searched refs:mLogBuffer (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/java/android/telephony/
DDropBoxManagerLoggerBackend.java56 private final StringBuilder mLogBuffer = new StringBuilder(); field in DropBoxManagerLoggerBackend
193 mLogBuffer in bufferLog()
197 if (mLogBuffer.length() >= BUFFER_SIZE_BYTES) { in bufferLog()
243 if (mLogBuffer.length() < MIN_BUFFER_BYTES_FOR_FLUSH) { in flush()
252 mDropBoxManager.addText(DROPBOX_TAG, mLogBuffer.toString()); in flush()
255 + mLogBuffer.length() + " to DropBoxManager", e); in flush()
257 mLogBuffer.setLength(0); in flush()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardClockSwitch.java137 private LogBuffer mLogBuffer = null; field in KeyguardClockSwitch
223 mLogBuffer = logBuffer; in setLogBuffer()
227 return mLogBuffer; in getLogBuffer()
246 if (mLogBuffer != null) { in setClock()
247 mLogBuffer.log(TAG, LogLevel.ERROR, "No clock being shown"); in setClock()
253 if (mLogBuffer != null) { in setClock()
254 mLogBuffer.log(TAG, LogLevel.INFO, "Attached new clock views to switch"); in setClock()
296 if (mLogBuffer != null) { in updateClockViews()
297 mLogBuffer.log(TAG, LogLevel.DEBUG, (msg) -> { in updateClockViews()
DKeyguardVisibilityHelper.java57 private final LogBuffer mLogBuffer; field in KeyguardVisibilityHelper
70 mLogBuffer = logBuffer; in KeyguardVisibilityHelper()
74 if (mLogBuffer != null) { in log()
75 mLogBuffer.log(TAG, LogLevel.DEBUG, message); in log()
DKeyguardClockSwitchController.java95 private final LogBuffer mLogBuffer; field in KeyguardClockSwitchController
195 mLogBuffer = logBuffer; in KeyguardClockSwitchController()
196 mView.setLogBuffer(mLogBuffer); in KeyguardClockSwitchController()
515 mLogBuffer.log(TAG, LogLevel.INFO, "refresh"); in refresh()
625 if (clock != null && mLogBuffer != null) { in setClock()
626 mLogBuffer.log(TAG, LogLevel.INFO, "New Clock"); in setClock()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/condition/
DMonitor.java45 private final TableLogBufferBase mLogBuffer; field in Monitor
174 mLogBuffer = logBuffer; in Monitor()
178 if (mLogBuffer != null) { in updateConditionMetState()
179 mLogBuffer.logChange(/* prefix= */ "", condition.getTag(), condition.getState()); in updateConditionMetState()
/frameworks/base/services/backup/java/com/android/server/backup/transport/
DTransportConnection.java99 private final List<String> mLogBuffer = new LinkedList<>(); field in TransportConnection
626 if (mLogBuffer.size() == LOG_BUFFER_SIZE) { in saveLogEntry()
627 mLogBuffer.remove(mLogBuffer.size() - 1); in saveLogEntry()
629 mLogBuffer.add(0, message); in saveLogEntry()
635 return Collections.unmodifiableList(mLogBuffer); in getLogBuffer()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/condition/
DConditionMonitorTest.java65 private TableLogBufferBase mLogBuffer; field in ConditionMonitorTest
586 final Monitor monitor = new Monitor(mExecutor, Collections.emptySet(), mLogBuffer); in testLoggingCallback()
604 verify(mLogBuffer).logChange("", "FakeCondition", "True"); in testLoggingCallback()
609 verify(mLogBuffer).logChange("", "FakeCondition", "False"); in testLoggingCallback()
614 verify(mLogBuffer).logChange("", "FakeCondition", "Invalid"); in testLoggingCallback()
619 verify(mLogBuffer).logChange("", "FakeCondition[OVRD]", "True"); in testLoggingCallback()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardClockSwitchControllerBaseTest.java119 protected LogBuffer mLogBuffer; field in KeyguardClockSwitchControllerBaseTest
188 mLogBuffer, in setup()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/ambient/statusbar/ui/
DAmbientStatusBarViewControllerTest.java111 LogBuffer mLogBuffer = FakeLogBuffer.Factory.Companion.create(); field in AmbientStatusBarViewControllerTest
150 mLogBuffer); in setup()
277 mLogBuffer); in testNotificationsIconNotShownWhenCountProviderAbsent()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/dreams/
DDreamOverlayStateControllerTest.java64 private final LogBuffer mLogBuffer = FakeLogBuffer.Factory.Companion.create(); field in DreamOverlayStateControllerTest
459 mLogBuffer, in getDreamOverlayStateController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/
DNetworkControllerImpl.java138 private final LogBuffer mLogBuffer; field in NetworkControllerImpl
323 mLogBuffer = logBuffer; in NetworkControllerImpl()
767 mLogBuffer.log( in onReceive()