Lines Matching defs:destination
207 m->destination = adjust_pointer(m->destination, op, old_size, m->header);
663 const char *destination,
673 assert_return(!destination || service_name_is_valid(destination), -EINVAL);
696 if (destination) {
697 r = message_append_field_string(t, BUS_MESSAGE_HEADER_DESTINATION, SD_BUS_TYPE_STRING, destination, &t->destination);
738 r = message_append_field_string(t, BUS_MESSAGE_HEADER_DESTINATION, SD_BUS_TYPE_STRING, call->sender, &t->destination);
892 r = message_append_field_string(t, BUS_MESSAGE_HEADER_DESTINATION, SD_BUS_TYPE_STRING, bus->unique_name, &t->destination);
1019 return m->destination;
3001 if (m->destination && m->bus->use_memfd) {
5362 if (m->destination)
5368 r = message_peek_field_string(m, service_name_is_valid, &ri, item_size, &m->destination);
5539 _public_ int sd_bus_message_set_destination(sd_bus_message *m, const char *destination) {
5541 assert_return(destination, -EINVAL);
5543 assert_return(!m->destination, -EEXIST);
5545 return message_append_field_string(m, BUS_MESSAGE_HEADER_DESTINATION, SD_BUS_TYPE_STRING, destination, &m->destination);
5859 r = sd_bus_message_new_method_call(bus, &n, (*m)->destination, (*m)->path, (*m)->interface, (*m)->member);
5892 if ((*m)->destination && !n->destination) {
5893 r = message_append_field_string(n, BUS_MESSAGE_HEADER_DESTINATION, SD_BUS_TYPE_STRING, (*m)->destination, &n->destination);