Home | History | Annotate | Download | only in dbus

Lines Matching refs:match_rule

217   for (const auto& match_rule : match_rules_) {
219 bus_->RemoveMatch(match_rule, error.get());
222 LOG(ERROR) << "Failed to remove match rule: " << match_rule;
397 // Add a match_rule listening NameOwnerChanged for the well-known name
431 const std::string match_rule =
435 return AddMatchRuleWithCallback(match_rule,
603 const std::string& match_rule,
606 DCHECK(!match_rule.empty());
610 if (match_rules_.find(match_rule) == match_rules_.end()) {
612 bus_->AddMatch(match_rule, error.get());
614 LOG(ERROR) << "Failed to add match rule \"" << match_rule << "\". Got "
619 match_rules_.insert(match_rule);
632 const std::string& match_rule,
634 DCHECK(!match_rule.empty());
638 if (match_rules_.find(match_rule) != match_rules_.end())
642 bus_->AddMatch(match_rule, error.get());
644 LOG(ERROR) << "Failed to add match rule \"" << match_rule << "\". Got "
649 match_rules_.insert(match_rule);