Home
last modified time | relevance | path

Searched refs:maxBytes (Results 1 – 7 of 7) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DLogcatReceiver.java82 public InputStreamSource getLogcatData(int maxBytes) { in getLogcatData() argument
83 return mReceiver.getData(maxBytes); in getLogcatData()
87 public InputStreamSource getLogcatData(int maxBytes, int offset) { in getLogcatData() argument
88 return mReceiver.getData(maxBytes, offset); in getLogcatData()
DLargeOutputReceiver.java103 public synchronized InputStreamSource getData(final int maxBytes) { in getData() argument
104 return getData(maxBytes, 0); in getData()
115 public synchronized InputStreamSource getData(final int maxBytes, final int offset) { in getData() argument
120 final FixedByteArrayOutputStream os = new FixedByteArrayOutputStream(maxBytes); in getData()
DILogcatReceiver.java34 public InputStreamSource getLogcatData(int maxBytes); in getLogcatData() argument
43 public default InputStreamSource getLogcatData(int maxBytes, int offset) { in getLogcatData() argument
44 return getLogcatData(maxBytes); in getLogcatData()
DINativeDevice.java824 public InputStreamSource getLogcat(int maxBytes); in getLogcat() argument
DNativeDevice.java2158 public InputStreamSource getLogcat(int maxBytes) { in getLogcat() argument
2164 return mLogcatReceiver.getLogcatData(maxBytes); in getLogcat()
/tools/tradefederation/core/src/com/android/tradefed/log/
DLogReceiver.java71 public InputStreamSource getLogcatData(int maxBytes) { in getLogcatData() argument
72 return mReceiver.getData(maxBytes); in getLogcatData()
/tools/test/connectivity/acts/framework/acts/libs/logging/
Dlog_stream.py326 return MovableRotatingFileHandler(filename, maxBytes=10485760,