HomeSort by relevance Sort by last modified time
    Searched full:limitns (Results 1 - 8 of 8) sorted by null

  /system/media/audio_utils/tests/
errorlog_tests.cpp 57 elog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond - 1 /* limitNs */)));
61 elog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond /* limitNs */)));
65 elog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond + 1 /* limitNs */)));
69 elog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond * 2 /* limitNs */)));
73 elog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond * 2 + 1/* limitNs */)));
simplelog_tests.cpp 55 slog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond /* limitNs */)));
59 slog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond * 2 /* limitNs */)));
63 slog->dumpToString("" /* prefix */, 0 /* lines */, oneSecond * 2 + 1 /* limitNs */)));
powerlog_tests.cpp 66 "" /* prefix */, 0 /* lines */, 2 /* limitNs */)));
68 "" /* prefix */, 0 /* lines */, 3 /* limitNs */)));
  /system/media/audio_utils/include/audio_utils/
ErrorLog.h 95 * \param limitNs limit dump to data more recent than limitNs (0 disables).
98 std::string dumpToString(const char *prefix = "", size_t lines = 0, int64_t limitNs = 0) const
121 if (entry.mCount == 0 || entry.mLastTime < limitNs) {
147 * \param limitNs limit dump to data more recent than limitNs (0 disables).
151 status_t dump(int fd, const char *prefix = "", size_t lines = 0, int64_t limitNs = 0) const
154 const std::string s = dumpToString(prefix, lines, limitNs);
SimpleLog.h 152 * \param limitNs limit dump to data more recent than limitNs (0 disables).
155 std::string dumpToString(const char *prefix = "", size_t lines = 0, int64_t limitNs = 0) const
171 if (time < limitNs) continue; // too old
185 * \param limitNs limit dump to data more recent than limitNs (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);
PowerLog.h 73 * \param limitNs limit dump to data more recent than limitNs (0 disables).
77 const char *prefix = "", size_t lines = 0, int64_t limitNs = 0) const;
84 * \param limitNs limit dump to data more recent than limitNs (0 disables).
88 status_t dump(int fd, const char *prefix = "", size_t lines = 0, int64_t limitNs = 0) const;
  /system/media/audio_utils/
PowerLog.cpp 108 std::string PowerLog::dumpToString(const char *prefix, size_t lines, int64_t limitNs) const
146 if (column == 0 && time < limitNs) {
216 status_t PowerLog::dump(int fd, const char *prefix, size_t lines, int64_t limitNs) const
222 const std::string s = dumpToString(prefix, lines, limitNs);
  /frameworks/av/media/libaudioclient/
AudioTrack.cpp     [all...]

Completed in 354 milliseconds