HomeSort by relevance Sort by last modified time
    Searched defs:matchmaker (Results 1 - 5 of 5) sorted by null

  /external/dbus/bus/
driver.c 822 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))
    [all...]
bus.c 54 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;
    [all...]
signals.c 989 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)
1003 _dbus_assert (matchmaker->refcount > 0);
1005 matchmaker->refcount += 1;
1007 return matchmaker;
1011 bus_matchmaker_unref (BusMatchmaker *matchmaker)
1937 BusMatchmaker *matchmaker; local
    [all...]
connection.c 171 BusMatchmaker *matchmaker; local
182 matchmaker = bus_context_get_matchmaker (d->connections->context);
183 bus_matchmaker_disconnected (matchmaker, connection);
    [all...]
dispatch.c 76 BusMatchmaker *matchmaker; local
93 matchmaker = bus_context_get_matchmaker (context);
96 if (!bus_matchmaker_get_recipients (matchmaker, connections,
    [all...]

Completed in 309 milliseconds