Lines Matching refs:method_call
202 std::unique_ptr<MethodCall> method_call( in HandleMessage() local
204 const std::string interface = method_call->GetInterface(); in HandleMessage()
205 const std::string member = method_call->GetMember(); in HandleMessage()
209 LOG(WARNING) << "Interface is missing: " << method_call->ToString(); in HandleMessage()
219 LOG(WARNING) << "Unknown method: " << method_call->ToString(); in HandleMessage()
229 std::move(method_call), start_time)); in HandleMessage()
232 MethodCall* method = method_call.get(); in HandleMessage()
237 base::Passed(&method_call))); in HandleMessage()
246 std::unique_ptr<MethodCall> method_call, in RunMethod() argument
249 MethodCall* method = method_call.get(); in RunMethod()
254 base::Passed(&method_call))); in RunMethod()
258 std::unique_ptr<MethodCall> method_call, in SendResponse() argument
260 DCHECK(method_call); in SendResponse()
264 std::move(method_call), std::move(response), in SendResponse()
267 OnMethodCompleted(std::move(method_call), std::move(response), start_time); in SendResponse()
271 void ExportedObject::OnMethodCompleted(std::unique_ptr<MethodCall> method_call, in OnMethodCompleted() argument
289 method_call.get(), DBUS_ERROR_FAILED, in OnMethodCompleted()
290 "error occurred in " + method_call->GetMember())); in OnMethodCompleted()