Lines Matching refs:method_call
134 MethodCall* method_call, in CallMethodAndBlockWithErrorDetails() argument
140 !method_call->SetDestination(service_name_) || in CallMethodAndBlockWithErrorDetails()
141 !method_call->SetPath(object_path_)) in CallMethodAndBlockWithErrorDetails()
144 DBusMessage* request_message = method_call->raw_message(); in CallMethodAndBlockWithErrorDetails()
155 method_call->GetInterface(), in CallMethodAndBlockWithErrorDetails()
156 method_call->GetMember()); in CallMethodAndBlockWithErrorDetails()
159 LogMethodCallFailure(method_call->GetInterface(), in CallMethodAndBlockWithErrorDetails()
160 method_call->GetMember(), in CallMethodAndBlockWithErrorDetails()
173 MethodCall* method_call, in CallMethodAndBlock() argument
176 return CallMethodAndBlockWithErrorDetails(method_call, timeout_ms, &error); in CallMethodAndBlock()
179 void ObjectProxy::CallMethod(MethodCall* method_call, in CallMethod() argument
183 &ObjectProxy::OnCallMethod, this, method_call->GetInterface(), in CallMethod()
184 method_call->GetMember(), std::move(callback)); in CallMethod()
186 CallMethodWithErrorResponse(method_call, timeout_ms, in CallMethod()
191 MethodCall* method_call, in CallMethodWithErrorResponse() argument
201 if (!method_call->SetDestination(service_name_) || in CallMethodWithErrorResponse()
202 !method_call->SetPath(object_path_)) { in CallMethodWithErrorResponse()
215 DBusMessage* request_message = method_call->raw_message(); in CallMethodWithErrorResponse()
219 method_call->GetInterface(), in CallMethodWithErrorResponse()
220 method_call->GetMember()); in CallMethodWithErrorResponse()
229 void ObjectProxy::CallMethodWithErrorCallback(MethodCall* method_call, in CallMethodWithErrorCallback() argument
244 CallMethodWithErrorResponse(method_call, timeout_ms, in CallMethodWithErrorCallback()