Searched refs:matchmaker (Results 1 - 6 of 6) sorted by relevance

/external/dbus/bus/
H A Dsignals.h68 BusMatchmaker* bus_matchmaker_ref (BusMatchmaker *matchmaker);
69 void bus_matchmaker_unref (BusMatchmaker *matchmaker);
71 dbus_bool_t bus_matchmaker_add_rule (BusMatchmaker *matchmaker,
73 dbus_bool_t bus_matchmaker_remove_rule_by_value (BusMatchmaker *matchmaker,
76 void bus_matchmaker_remove_rule (BusMatchmaker *matchmaker,
78 void bus_matchmaker_disconnected (BusMatchmaker *matchmaker,
80 dbus_bool_t bus_matchmaker_get_recipients (BusMatchmaker *matchmaker,
H A Dsignals.c989 BusMatchmaker *matchmaker; local
991 matchmaker = dbus_new0 (BusMatchmaker, 1);
992 if (matchmaker == NULL)
995 matchmaker->refcount = 1;
997 return matchmaker;
1001 bus_matchmaker_ref (BusMatchmaker *matchmaker) argument
1003 _dbus_assert (matchmaker->refcount > 0);
1005 matchmaker->refcount += 1;
1007 return matchmaker;
1011 bus_matchmaker_unref (BusMatchmaker *matchmaker) argument
1034 bus_matchmaker_add_rule(BusMatchmaker *matchmaker, BusMatchRule *rule) argument
1125 bus_matchmaker_remove_rule_link(BusMatchmaker *matchmaker, DBusList *link) argument
1147 bus_matchmaker_remove_rule(BusMatchmaker *matchmaker, BusMatchRule *rule) argument
1168 bus_matchmaker_remove_rule_by_value(BusMatchmaker *matchmaker, BusMatchRule *value, DBusError *error) argument
1208 bus_matchmaker_disconnected(BusMatchmaker *matchmaker, DBusConnection *disconnected) argument
1433 bus_matchmaker_get_recipients(BusMatchmaker *matchmaker, BusConnections *connections, DBusConnection *sender, DBusConnection *addressed_recipient, DBusMessage *message, DBusList **recipients_p) argument
1937 BusMatchmaker *matchmaker; local
[all...]
H A Dbus.c54 BusMatchmaker *matchmaker; member in struct:BusContext
659 context->matchmaker = bus_matchmaker_new ();
660 if (context->matchmaker == NULL)
942 if (context->matchmaker)
944 bus_matchmaker_unref (context->matchmaker);
945 context->matchmaker = NULL;
1011 return context->matchmaker;
H A Ddriver.c822 BusMatchmaker *matchmaker; local
855 matchmaker = bus_connection_get_matchmaker (connection);
857 if (!bus_matchmaker_add_rule (matchmaker, rule))
866 bus_matchmaker_remove_rule (matchmaker, rule);
890 BusMatchmaker *matchmaker; local
918 matchmaker = bus_connection_get_matchmaker (connection);
920 if (!bus_matchmaker_remove_rule_by_value (matchmaker, rule, error))
H A Dconnection.c171 BusMatchmaker *matchmaker; local
182 matchmaker = bus_context_get_matchmaker (d->connections->context);
183 bus_matchmaker_disconnected (matchmaker, connection);
H A Ddispatch.c76 BusMatchmaker *matchmaker; local
93 matchmaker = bus_context_get_matchmaker (context);
96 if (!bus_matchmaker_get_recipients (matchmaker, connections,

Completed in 42 milliseconds