Home | History | Annotate | Download | only in dbus

Lines Matching refs:match_rule

392   // Add a match_rule listening NameOwnerChanged for the well-known name
426 const std::string match_rule =
430 return AddMatchRuleWithCallback(match_rule,
588 const std::string& match_rule,
591 DCHECK(!match_rule.empty());
595 if (match_rules_.find(match_rule) == match_rules_.end()) {
597 bus_->AddMatch(match_rule, error.get());
599 LOG(ERROR) << "Failed to add match rule \"" << match_rule << "\". Got "
604 match_rules_.insert(match_rule);
617 const std::string& match_rule,
619 DCHECK(!match_rule.empty());
623 if (match_rules_.find(match_rule) != match_rules_.end())
627 bus_->AddMatch(match_rule, error.get());
629 LOG(ERROR) << "Failed to add match rule \"" << match_rule << "\". Got "
634 match_rules_.insert(match_rule);