Searched refs:matchmaker (Results 1 – 6 of 6) sorted by relevance
/external/dbus/bus/ |
D | signals.h | 81 BusMatchmaker* bus_matchmaker_ref (BusMatchmaker *matchmaker); 82 void bus_matchmaker_unref (BusMatchmaker *matchmaker); 84 dbus_bool_t bus_matchmaker_add_rule (BusMatchmaker *matchmaker, 86 dbus_bool_t bus_matchmaker_remove_rule_by_value (BusMatchmaker *matchmaker, 89 void bus_matchmaker_remove_rule (BusMatchmaker *matchmaker, 91 void bus_matchmaker_disconnected (BusMatchmaker *matchmaker, 93 dbus_bool_t bus_matchmaker_get_recipients (BusMatchmaker *matchmaker,
|
D | signals.c | 1173 BusMatchmaker *matchmaker; in bus_matchmaker_new() local 1176 matchmaker = dbus_new0 (BusMatchmaker, 1); in bus_matchmaker_new() 1177 if (matchmaker == NULL) in bus_matchmaker_new() 1180 matchmaker->refcount = 1; in bus_matchmaker_new() 1184 RulePool *p = matchmaker->rules_by_type + i; in bus_matchmaker_new() 1193 return matchmaker; in bus_matchmaker_new() 1198 RulePool *p = matchmaker->rules_by_type + i; in bus_matchmaker_new() 1205 dbus_free (matchmaker); in bus_matchmaker_new() 1211 bus_matchmaker_get_rules (BusMatchmaker *matchmaker, in bus_matchmaker_get_rules() argument 1225 p = matchmaker->rules_by_type + message_type; in bus_matchmaker_get_rules() [all …]
|
D | bus.c | 66 BusMatchmaker *matchmaker; member 836 context->matchmaker = bus_matchmaker_new (); in bus_context_new() 837 if (context->matchmaker == NULL) in bus_context_new() 1112 if (context->matchmaker) in bus_context_unref() 1114 bus_matchmaker_unref (context->matchmaker); in bus_context_unref() 1115 context->matchmaker = NULL; in bus_context_unref() 1192 return context->matchmaker; in bus_context_get_matchmaker()
|
D | driver.c | 958 BusMatchmaker *matchmaker; in bus_driver_handle_add_match() local 991 matchmaker = bus_connection_get_matchmaker (connection); in bus_driver_handle_add_match() 993 if (!bus_matchmaker_add_rule (matchmaker, rule)) in bus_driver_handle_add_match() 1002 bus_matchmaker_remove_rule (matchmaker, rule); in bus_driver_handle_add_match() 1026 BusMatchmaker *matchmaker; in bus_driver_handle_remove_match() local 1054 matchmaker = bus_connection_get_matchmaker (connection); in bus_driver_handle_remove_match() 1056 if (!bus_matchmaker_remove_rule_by_value (matchmaker, rule, error)) in bus_driver_handle_remove_match()
|
D | connection.c | 192 BusMatchmaker *matchmaker; in bus_connection_disconnected() local 203 matchmaker = bus_context_get_matchmaker (d->connections->context); in bus_connection_disconnected() 204 bus_matchmaker_disconnected (matchmaker, connection); in bus_connection_disconnected()
|
D | dispatch.c | 91 BusMatchmaker *matchmaker; in bus_dispatch_matches() local 137 matchmaker = bus_context_get_matchmaker (context); in bus_dispatch_matches() 140 if (!bus_matchmaker_get_recipients (matchmaker, connections, in bus_dispatch_matches()
|