Home
last modified time | relevance | path

Searched refs:to_send (Results 1 – 2 of 2) sorted by relevance

/external/dbus/dbus/
Ddbus-auth-script.c478 DBusString to_send; in _dbus_auth_script_run() local
482 if (!_dbus_string_init (&to_send)) in _dbus_auth_script_run()
488 if (!append_quoted_string (&to_send, &line)) in _dbus_auth_script_run()
492 _dbus_string_free (&to_send); in _dbus_auth_script_run()
496 _dbus_verbose ("Sending '%s'\n", _dbus_string_get_const_data (&to_send)); in _dbus_auth_script_run()
498 if (!_dbus_string_append (&to_send, "\r\n")) in _dbus_auth_script_run()
502 _dbus_string_free (&to_send); in _dbus_auth_script_run()
510 if (_dbus_string_find (&to_send, 0, in _dbus_auth_script_run()
518 _dbus_string_free (&to_send); in _dbus_auth_script_run()
526 _dbus_string_free (&to_send); in _dbus_auth_script_run()
[all …]
/external/dbus/bus/
Dconnection.c1929 MessageToSend *to_send) in message_to_send_free() argument
1931 if (to_send->message) in message_to_send_free()
1932 dbus_message_unref (to_send->message); in message_to_send_free()
1934 if (to_send->preallocated) in message_to_send_free()
1935 dbus_connection_free_preallocated_send (connection, to_send->preallocated); in message_to_send_free()
1937 dbus_free (to_send); in message_to_send_free()
2045 MessageToSend *to_send; in bus_transaction_send() local
2070 to_send = dbus_new (MessageToSend, 1); in bus_transaction_send()
2071 if (to_send == NULL) in bus_transaction_send()
2076 to_send->preallocated = dbus_connection_preallocate_send (connection); in bus_transaction_send()
[all …]