Home | History | Annotate | Download | only in dbus

Lines Matching refs:match_rule

719 void Bus::AddMatch(const std::string& match_rule, DBusError* error) {
724 match_rules_added_.find(match_rule);
729 VLOG(1) << "Match rule already exists: " << match_rule;
733 dbus_bus_add_match(connection_, match_rule.c_str(), error);
734 match_rules_added_[match_rule] = 1;
737 bool Bus::RemoveMatch(const std::string& match_rule, DBusError* error) {
742 match_rules_added_.find(match_rule);
744 LOG(ERROR) << "Requested to remove an unknown match rule: " << match_rule;
751 dbus_bus_remove_match(connection_, match_rule.c_str(), error);
752 match_rules_added_.erase(match_rule);