Lines Matching full:service
20 // Used to store dbus statistics sorted alphabetically by service, interface,
23 Stat(const std::string& service,
26 : service(service),
33 std::string service;
41 if (service != other.service)
42 return service < other.service;
82 void AddStat(const std::string& service,
91 Stat* stat = GetStat(service, interface, method, true);
105 Stat* GetStat(const std::string& service,
110 scoped_ptr<Stat> stat(new Stat(service, interface, method));
150 void AddSentMethodCall(const std::string& service,
156 service, interface, method, DBusStatistics::TYPE_SENT_METHOD_CALLS);
159 void AddReceivedSignal(const std::string& service,
165 service, interface, method, DBusStatistics::TYPE_RECEIVED_SIGNALS);
168 void AddBlockingSentMethodCall(const std::string& service,
174 service, interface, method,
194 // Stats are stored in order by service, then interface, then method.
205 (*next_iter)->service == stat->service &&
216 line += stat->service;
218 // The interface usually includes the service so don't show both.
263 bool GetCalls(const std::string& service,
271 Stat* stat = g_dbus_statistics->GetStat(service, interface, method, false);