Home | History | Annotate | Download | only in dbus

Lines Matching refs:Response

133 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlockWithErrorDetails(
142 return std::unique_ptr<Response>();
163 return std::unique_ptr<Response>();
169 return Response::FromRawMessage(response_message);
172 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlock(
207 nullptr /* response */, nullptr /* error_response */);
222 // Wait for the response in the D-Bus thread.
235 Response* response, ErrorResponse* error_response) {
236 if (response) {
237 std::move(callback).Run(response);
322 nullptr /* response */, nullptr /* error_response */);
359 // Either |response| or |error_response| takes ownership of the
361 std::unique_ptr<Response> response;
366 response = Response::FromRawMessage(response_message);
371 std::move(callback_holder), start_time, response.get(),
394 [](Response* response, ErrorResponse* error_response) {
397 base::Owned(response.release()),
408 Response* response,
411 callback_holder.ReleaseCallback().Run(response, error_response);
413 if (response) {
419 UMA_HISTOGRAM_ENUMERATION("DBus.AsyncMethodCallSuccess", response ? 1 : 0,
622 Response* response,
624 if (response) {
626 std::move(response_callback).Run(response);