Home | History | Annotate | Download | only in audio_utils

Lines Matching refs:lines

49      * \param maxLogLines the maximum number of log lines.
151 * \param lines maximum number of lines to output (0 disables).
155 std::string dumpToString(const char *prefix = "", size_t lines = 0, int64_t limitNs = 0) const
157 if (lines == 0) {
158 lines = mLog.size();
165 // Note: this restricts the lines before checking the time constraint.
166 if (mLog.size() > lines) {
167 it += (mLog.size() - lines);
184 * \param lines maximum number of lines to output (0 disables).
189 status_t dump(int fd, const char *prefix = "", size_t lines = 0, int64_t limitNs = 0) const
193 const std::string s = dumpToString(prefix, lines, limitNs);