Home | History | Annotate | Download | only in dbus

Lines Matching refs:Response

27 // response when it is available.
33 // Sends an error response. Marshals the |error| object over D-Bus.
48 // Sends a raw D-Bus response message.
49 void SendRawResponse(std::unique_ptr<dbus::Response> response);
51 // Creates a custom response object for the current method call.
52 std::unique_ptr<dbus::Response> CreateCustomResponse() const;
54 // Checks if the response has been sent already.
60 // Aborts the method execution. Does not send any response message.
64 // A callback to be called to send the method call response message.
68 // the method call response has been sent to ensure we can't possibly try
69 // to send a response again somehow.
84 // Sends the a successful response. |return_values| can contain a list
88 auto response = CreateCustomResponse();
89 dbus::MessageWriter writer(response.get());
91 SendRawResponse(std::move(response));