Home
last modified time | relevance | path

Searched refs:ErrorResponse (Results 1 – 10 of 10) sorted by relevance

/external/libchrome/dbus/
Dmessage.h229 class CHROME_DBUS_EXPORT ErrorResponse: public Response {
233 static std::unique_ptr<ErrorResponse> FromRawMessage(
240 static std::unique_ptr<ErrorResponse> FromMethodCall(
247 ErrorResponse();
249 DISALLOW_COPY_AND_ASSIGN(ErrorResponse);
Dmessage.cc426 ErrorResponse::ErrorResponse() : Response() { in ErrorResponse() function in dbus::ErrorResponse
429 std::unique_ptr<ErrorResponse> ErrorResponse::FromRawMessage( in FromRawMessage()
433 std::unique_ptr<ErrorResponse> response(new ErrorResponse); in FromRawMessage()
438 std::unique_ptr<ErrorResponse> ErrorResponse::FromMethodCall( in FromMethodCall()
442 std::unique_ptr<ErrorResponse> response(new ErrorResponse); in FromMethodCall()
Dobject_proxy.h27 class ErrorResponse; variable
71 typedef base::Callback<void(ErrorResponse*)> ErrorCallback;
275 ErrorResponse* error_response);
Dobject_proxy.cc331 std::unique_ptr<ErrorResponse> error_response( in RunResponseCallback()
332 ErrorResponse::FromRawMessage(response_message)); in RunResponseCallback()
337 base::Bind(&base::DeletePointer<ErrorResponse>, in RunResponseCallback()
588 ErrorResponse* error_response) { in OnCallMethodError()
Dexported_object.cc288 std::unique_ptr<ErrorResponse> error_response(ErrorResponse::FromMethodCall( in OnMethodCompleted()
/external/libbrillo/brillo/dbus/
Ddbus_method_invoker.cc11 dbus::ErrorResponse* resp) { in TranslateErrorResponse()
Dutils.cc21 return dbus::ErrorResponse::FromMethodCall(method_call, error_name, in CreateDBusErrorResponse()
Ddbus_method_invoker.h248 dbus::ErrorResponse* resp);
Ddbus_object.cc122 dbus::ErrorResponse::FromMethodCall(method_call, in HandleMethodCall()
Ddbus_method_invoker_unittest.cc238 auto error_response = dbus::ErrorResponse::FromMethodCall( in HandleCall()