Lines Matching defs:interface
20 // Used to store dbus statistics sorted alphabetically by service, interface,
24 const std::string& interface,
27 interface(interface),
34 std::string interface;
43 if (interface != other.interface)
44 return interface < other.interface;
81 // Add a call to |method| for |interface|. See also MethodCall in message.h.
83 const std::string& interface,
91 Stat* stat = GetStat(service, interface, method, true);
106 const std::string& interface,
110 scoped_ptr<Stat> stat(new Stat(service, interface, method));
151 const std::string& interface,
156 service, interface, method, DBusStatistics::TYPE_SENT_METHOD_CALLS);
160 const std::string& interface,
165 service, interface, method, DBusStatistics::TYPE_RECEIVED_SIGNALS);
169 const std::string& interface,
174 service, interface, method,
194 // Stats are stored in order by service, then interface, then method.
206 (show < SHOW_INTERFACE || (*next_iter)->interface == stat->interface) &&
218 // The interface usually includes the service so don't show both.
219 line += stat->interface;
264 const std::string& interface,
271 Stat* stat = g_dbus_statistics->GetStat(service, interface, method, false);