Home | History | Annotate | Download | only in dbus

Lines Matching refs:Response

33 class Response;
73 // Called when an error response is returned or no response is returned.
77 // Called when the response is returned. Used for CallMethod().
78 using ResponseCallback = base::OnceCallback<void(Response*)>;
80 // Called when the response is returned or an error occurs. Used for
86 base::OnceCallback<void(Response*, ErrorResponse*)>;
108 // Calls the method of the remote object and blocks until the response
113 virtual std::unique_ptr<Response> CallMethodAndBlockWithErrorDetails(
118 // Calls the method of the remote object and blocks until the response
122 virtual std::unique_ptr<Response> CallMethodAndBlock(MethodCall* method_call,
132 // If the method call is successful, a pointer to Response object will
146 // if the remote object returned an error, or nullptr if a response was not
148 // error case, Response* should be nullptr.
163 // Response object. If unsuccessful, |error_callback| will be invoked with an
165 // (if a response was not received at all).
261 // Runs the ResponseOrErrorCallback with the given response object.
264 Response* response,
293 // Helper method for logging response errors appropriately.
305 Response* response,