Lines Matching refs:method_call
199 scoped_ptr<MethodCall> method_call( in HandleMessage() local
201 const std::string interface = method_call->GetInterface(); in HandleMessage()
202 const std::string member = method_call->GetMember(); in HandleMessage()
206 LOG(WARNING) << "Interface is missing: " << method_call->ToString(); in HandleMessage()
216 LOG(WARNING) << "Unknown method: " << method_call->ToString(); in HandleMessage()
227 base::Passed(&method_call), in HandleMessage()
231 MethodCall* method = method_call.get(); in HandleMessage()
236 base::Passed(&method_call))); in HandleMessage()
245 scoped_ptr<MethodCall> method_call, in RunMethod() argument
248 MethodCall* method = method_call.get(); in RunMethod()
253 base::Passed(&method_call))); in RunMethod()
257 scoped_ptr<MethodCall> method_call, in SendResponse() argument
259 DCHECK(method_call); in SendResponse()
265 base::Passed(&method_call), in SendResponse()
269 OnMethodCompleted(std::move(method_call), std::move(response), start_time); in SendResponse()
273 void ExportedObject::OnMethodCompleted(scoped_ptr<MethodCall> method_call, in OnMethodCompleted() argument
292 method_call.get(), in OnMethodCompleted()
294 "error occurred in " + method_call->GetMember())); in OnMethodCompleted()