Home | History | Annotate | Download | only in dbus

Lines Matching defs:stat

54   // Enum to specify which field in Stat to increment in AddStat.
71 StatValue* stat = GetStats(service, interface, method, true);
72 DCHECK(stat);
74 ++stat->sent_method_calls;
76 ++stat->received_signals;
78 ++stat->sent_blocking_method_calls;
83 // Look up the Stat entry in |stats_|. If |add_stat| is true, add a new entry
181 const StatValue& stat = cur_iter->second;
182 sent += stat.sent_method_calls;
183 received += stat.received_signals;
184 sent_blocking += stat.sent_blocking_method_calls;
185 // If this is not the last stat, and if the next stat matches the current
186 // stat, continue.
255 StatValue* stat =
257 if (!stat)
259 *sent = stat->sent_method_calls;
260 *received = stat->received_signals;
261 *blocking = stat->sent_blocking_method_calls;