Home | History | Annotate | Download | only in dbus

Lines Matching refs:response

107     DBusMethodResponsePtr<> response) {
110 Passed(&response));
114 DBusMethodResponsePtr<string> response) {
117 Passed(&response));
121 DBusMethodResponsePtr<bool> response) {
124 Passed(&response));
129 // Invoke response if command is completed synchronously (either
136 void ChromeosDBusAdaptor::MethodReplyCallback(DBusMethodResponsePtr<> response,
140 response->ReplyWithError(chromeos_error.get());
142 response->Return();
148 DBusMethodResponsePtr<T> response, const Error& error, const T& returned) {
151 response->ReplyWithError(chromeos_error.get());
153 response->Return(returned);
158 DBusMethodResponsePtr<string> response,
161 TypedMethodReplyCallback(std::move(response), error, returned);
165 DBusMethodResponsePtr<bool> response,
168 TypedMethodReplyCallback(std::move(response), error, returned);