/external/dbus/bus/ |
signals.h | 69 BusMatchmaker* bus_matchmaker_ref (BusMatchmaker *matchmaker); 70 void bus_matchmaker_unref (BusMatchmaker *matchmaker); 72 dbus_bool_t bus_matchmaker_add_rule (BusMatchmaker *matchmaker, 74 dbus_bool_t bus_matchmaker_remove_rule_by_value (BusMatchmaker *matchmaker, 77 void bus_matchmaker_remove_rule (BusMatchmaker *matchmaker, 79 void bus_matchmaker_disconnected (BusMatchmaker *matchmaker, 81 dbus_bool_t bus_matchmaker_get_recipients (BusMatchmaker *matchmaker,
|
signals.c | 1073 BusMatchmaker *matchmaker; local 1076 matchmaker = dbus_new0 (BusMatchmaker, 1); 1077 if (matchmaker == NULL) 1080 matchmaker->refcount = 1; 1084 RulePool *p = matchmaker->rules_by_type + i; 1093 return matchmaker; 1098 RulePool *p = matchmaker->rules_by_type + i; 1110 bus_matchmaker_get_rules (BusMatchmaker *matchmaker, 1124 p = matchmaker->rules_by_type + message_type; 1168 bus_matchmaker_gc_rules (BusMatchmaker *matchmaker, 2278 BusMatchmaker *matchmaker; local [all...] |
bus.c | 62 BusMatchmaker *matchmaker; member in struct:BusContext 809 context->matchmaker = bus_matchmaker_new (); 810 if (context->matchmaker == NULL) 1083 if (context->matchmaker) 1085 bus_matchmaker_unref (context->matchmaker); 1086 context->matchmaker = NULL; 1163 return context->matchmaker; [all...] |
driver.c | 954 BusMatchmaker *matchmaker; local 987 matchmaker = bus_connection_get_matchmaker (connection); 989 if (!bus_matchmaker_add_rule (matchmaker, rule)) 998 bus_matchmaker_remove_rule (matchmaker, rule); 1022 BusMatchmaker *matchmaker; local 1050 matchmaker = bus_connection_get_matchmaker (connection); 1052 if (!bus_matchmaker_remove_rule_by_value (matchmaker, rule, error)) [all...] |
connection.c | 177 BusMatchmaker *matchmaker; local 188 matchmaker = bus_context_get_matchmaker (d->connections->context); 189 bus_matchmaker_disconnected (matchmaker, connection); [all...] |
dispatch.c | 98 BusMatchmaker *matchmaker; local 144 matchmaker = bus_context_get_matchmaker (context); 147 if (!bus_matchmaker_get_recipients (matchmaker, connections, [all...] |