• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/bus/

Lines Matching defs:matchmaker

1173   BusMatchmaker *matchmaker;
1176 matchmaker = dbus_new0 (BusMatchmaker, 1);
1177 if (matchmaker == NULL)
1180 matchmaker->refcount = 1;
1184 RulePool *p = matchmaker->rules_by_type + i;
1193 return matchmaker;
1198 RulePool *p = matchmaker->rules_by_type + i;
1205 dbus_free (matchmaker);
1211 bus_matchmaker_get_rules (BusMatchmaker *matchmaker,
1225 p = matchmaker->rules_by_type + message_type;
1269 bus_matchmaker_gc_rules (BusMatchmaker *matchmaker,
1285 p = matchmaker->rules_by_type + message_type;
1294 bus_matchmaker_ref (BusMatchmaker *matchmaker)
1296 _dbus_assert (matchmaker->refcount > 0);
1298 matchmaker->refcount += 1;
1300 return matchmaker;
1304 bus_matchmaker_unref (BusMatchmaker *matchmaker)
1306 _dbus_assert (matchmaker->refcount > 0);
1308 matchmaker->refcount -= 1;
1309 if (matchmaker->refcount == 0)
1315 RulePool *p = matchmaker->rules_by_type + i;
1321 dbus_free (matchmaker);
1327 bus_matchmaker_add_rule (BusMatchmaker *matchmaker,
1338 rules = bus_matchmaker_get_rules (matchmaker, rule->message_type,
1350 bus_matchmaker_gc_rules (matchmaker, rule->message_type,
1464 bus_matchmaker_remove_rule (BusMatchmaker *matchmaker,
1475 rules = bus_matchmaker_get_rules (matchmaker, rule->message_type,
1484 bus_matchmaker_gc_rules (matchmaker, rule->message_type, rule->interface,
1502 bus_matchmaker_remove_rule_by_value (BusMatchmaker *matchmaker,
1513 rules = bus_matchmaker_get_rules (matchmaker, value->message_type,
1547 bus_matchmaker_gc_rules (matchmaker, value->message_type, value->interface,
1598 bus_matchmaker_disconnected (BusMatchmaker *matchmaker,
1617 RulePool *p = matchmaker->rules_by_type + i;
1998 bus_matchmaker_get_recipients (BusMatchmaker *matchmaker,
2027 neither = bus_matchmaker_get_rules (matchmaker, DBUS_MESSAGE_TYPE_INVALID,
2032 just_iface = bus_matchmaker_get_rules (matchmaker,
2037 just_type = bus_matchmaker_get_rules (matchmaker, type, NULL, FALSE);
2040 both = bus_matchmaker_get_rules (matchmaker, type, interface, FALSE);
2796 BusMatchmaker *matchmaker;
2798 matchmaker = bus_matchmaker_new ();
2799 bus_matchmaker_ref (matchmaker);
2800 bus_matchmaker_unref (matchmaker);
2801 bus_matchmaker_unref (matchmaker);