Home
last modified time | relevance | path

Searched refs:mMaxLines (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/car-lib/src/com/android/car/internal/util/
DLocalLog.java39 private final int mMaxLines; field in LocalLog
60 mMaxLines = Math.max(0, maxLines); in LocalLog()
61 mLog = new ArrayDeque<>(mMaxLines); in LocalLog()
67 if (mMaxLines <= 0) { in log()
82 while (mLog.size() >= mMaxLines) { in append()
/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/
DSharedLog.java253 private final int mMaxLines; field in SharedLog.LocalLog
256 mMaxLines = Math.max(0, maxLines); in LocalLog()
257 mLog = new ArrayDeque<>(mMaxLines); in LocalLog()
261 if (mMaxLines <= 0) return; in append()
262 while (mLog.size() >= mMaxLines) { in append()
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DCarNotificationBodyView.java71 private int mMaxLines; field in CarNotificationBodyView
119 mMaxLines = attributes.getInteger(R.styleable.CarNotificationBodyView_maxLines, in init()
196 mContentView.setMaxLines(mMaxLines); in bind()
298 setContentMaxLines(mMaxLines); in reset()