Searched refs:maxBufferSize (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/content/ |
D | ContentCaptureOptions.java | 54 public final int maxBufferSize; field in ContentCaptureOptions 97 public ContentCaptureOptions(int loggingLevel, int maxBufferSize, int idleFlushingFrequencyMs, in ContentCaptureOptions() argument 100 this(/* lite= */ false, loggingLevel, maxBufferSize, idleFlushingFrequencyMs, in ContentCaptureOptions() 114 private ContentCaptureOptions(boolean lite, int loggingLevel, int maxBufferSize, in ContentCaptureOptions() argument 119 this.maxBufferSize = maxBufferSize; in ContentCaptureOptions() 167 .append(", maxBufferSize=").append(maxBufferSize) in toString() 184 pw.print(", bufferSize="); pw.print(maxBufferSize); in dumpShort() 204 parcel.writeInt(maxBufferSize); in writeToParcel() 221 final int maxBufferSize = parcel.readInt(); 228 return new ContentCaptureOptions(loggingLevel, maxBufferSize,
|
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/ |
D | BufferPool.java | 32 public BufferPool(int initialBufferSize, int maxBufferSize, int maxBuffers) { in BufferPool() argument 34 mMaxBufferSize = maxBufferSize; in BufferPool()
|
/frameworks/base/core/java/android/view/contentcapture/ |
D | MainContentCaptureSession.java | 306 final int maxBufferSize = mManager.mOptions.maxBufferSize; in sendEvent() local 309 Log.v(TAG, "handleSendEvent(): creating buffer for " + maxBufferSize + " events"); in sendEvent() 311 mEvents = new ArrayList<>(maxBufferSize); in sendEvent() 351 final boolean bufferEvent = numberEvents < maxBufferSize; in sendEvent() 372 if (mState != STATE_ACTIVE && numberEvents >= maxBufferSize) { in sendEvent() 493 + " m=" + mManager.mOptions.maxBufferSize in flush() 674 pw.print('/'); pw.println(mManager.mOptions.maxBufferSize); in dump()
|
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/ |
D | ContentCaptureMetricsLogger.java | 103 options.maxBufferSize, options.idleFlushingFrequencyMs, in writeSessionFlush()
|
/frameworks/base/api/ |
D | test-current.txt | 635 field public final int maxBufferSize;
|