Searched defs:ErrorResponse (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/dbus/
H A Dmessage.h224 // ErrorResponse is a type of message used to return an error to the
226 class CHROME_DBUS_EXPORT ErrorResponse: public Response { class in namespace:dbus
230 static scoped_ptr<ErrorResponse> FromRawMessage(DBusMessage* raw_message);
232 // Returns a newly created ErrorResponse from the given method call, the
236 static scoped_ptr<ErrorResponse> FromMethodCall(
242 // Creates an ErrorResponse message. The internal raw message is NULL.
243 ErrorResponse();
245 DISALLOW_COPY_AND_ASSIGN(ErrorResponse);
H A Dmessage.cc425 // ErrorResponse implementation.
428 ErrorResponse::ErrorResponse() : Response() { function in class:dbus::ErrorResponse
431 scoped_ptr<ErrorResponse> ErrorResponse::FromRawMessage(
435 scoped_ptr<ErrorResponse> response(new ErrorResponse);
440 scoped_ptr<ErrorResponse> ErrorResponse::FromMethodCall(
444 scoped_ptr<ErrorResponse> respons
[all...]

Completed in 158 milliseconds