Lines Matching refs:send

56       rule->d.send.message_type = DBUS_MESSAGE_TYPE_INVALID;  in bus_policy_rule_new()
61 rule->d.send.requested_reply = rule->allow; in bus_policy_rule_new()
99 dbus_free (rule->d.send.path); in bus_policy_rule_unref()
100 dbus_free (rule->d.send.interface); in bus_policy_rule_unref()
101 dbus_free (rule->d.send.member); in bus_policy_rule_unref()
102 dbus_free (rule->d.send.error); in bus_policy_rule_unref()
103 dbus_free (rule->d.send.destination); in bus_policy_rule_unref()
813 rule->d.send.message_type == DBUS_MESSAGE_TYPE_INVALID && in bus_client_policy_optimize()
814 rule->d.send.path == NULL && in bus_client_policy_optimize()
815 rule->d.send.interface == NULL && in bus_client_policy_optimize()
816 rule->d.send.member == NULL && in bus_client_policy_optimize()
817 rule->d.send.error == NULL && in bus_client_policy_optimize()
818 rule->d.send.destination == NULL; in bus_client_policy_optimize()
903 if (rule->d.send.message_type != DBUS_MESSAGE_TYPE_INVALID) in bus_client_policy_check_can_send()
905 if (dbus_message_get_type (message) != rule->d.send.message_type) in bus_client_policy_check_can_send()
919 … if (!requested_reply && rule->allow && rule->d.send.requested_reply && !rule->d.send.eavesdrop) in bus_client_policy_check_can_send()
929 if (requested_reply && !rule->allow && !rule->d.send.requested_reply) in bus_client_policy_check_can_send()
936 if (rule->d.send.path != NULL) in bus_client_policy_check_can_send()
940 rule->d.send.path) != 0) in bus_client_policy_check_can_send()
947 if (rule->d.send.interface != NULL) in bus_client_policy_check_can_send()
961 rule->d.send.interface) != 0)) in bus_client_policy_check_can_send()
968 if (rule->d.send.member != NULL) in bus_client_policy_check_can_send()
972 rule->d.send.member) != 0) in bus_client_policy_check_can_send()
979 if (rule->d.send.error != NULL) in bus_client_policy_check_can_send()
983 rule->d.send.error) != 0) in bus_client_policy_check_can_send()
990 if (rule->d.send.destination != NULL) in bus_client_policy_check_can_send()
1000 rule->d.send.destination)) in bus_client_policy_check_can_send()
1003 rule->d.send.destination); in bus_client_policy_check_can_send()
1012 _dbus_string_init_const (&str, rule->d.send.destination); in bus_client_policy_check_can_send()
1018 rule->d.send.destination); in bus_client_policy_check_can_send()
1025 rule->d.send.destination); in bus_client_policy_check_can_send()
1033 *log = rule->d.send.log; in bus_client_policy_check_can_send()