Lines Matching refs:Str
152 ScopedString Str; in report() local
153 getAllImpl(Str); in report()
154 Str.output(); in report()
159 ScopedString Str; in printAll() local
160 getAll(Str); in printAll()
161 Str.output(); in printAll()
164 void getAll(ScopedString &Str) EXCLUDES(Mutex) { in getAll() argument
166 getAllImpl(Str); in getAll()
170 void getAllImpl(ScopedString &Str) REQUIRES(Mutex) { in getAllImpl() argument
174 Str.append("%-15s %-15s %-15s\n", AvgHeader, MaxHeader, NameHeader); in getAllImpl()
179 getImpl(Str, I); in getAllImpl()
183 void getImpl(ScopedString &Str, const u32 HandleId, const u32 ExtraIndent = 0)
195 Str.append("%14" PRId64 ".%" PRId64 "(ns) %-8s", Integral, Fraction, " "); in REQUIRES()
198 Str.append("%16" PRId64 "(ns) %-11s", TimerRecords[HandleId].MaxTime, " "); in REQUIRES()
202 Str.append("%s", " "); in REQUIRES()
203 Str.append("%s (%" PRId64 ")\n", Timers[HandleId].Name, Occurrence); in REQUIRES()
207 getImpl(Str, I, ExtraIndent + 1); in REQUIRES()