Lines Matching refs:ObjectProxy
54 ObjectProxy::ObjectProxy(Bus* bus, in ObjectProxy() function in dbus::ObjectProxy
65 ObjectProxy::~ObjectProxy() { in ~ObjectProxy()
72 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlockWithErrorDetails( in CallMethodAndBlockWithErrorDetails()
111 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlock( in CallMethodAndBlock()
118 void ObjectProxy::CallMethod(MethodCall* method_call, in CallMethod()
122 base::Bind(&ObjectProxy::OnCallMethodError, in CallMethod()
129 void ObjectProxy::CallMethodWithErrorCallback(MethodCall* method_call, in CallMethodWithErrorCallback()
141 base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback, in CallMethodWithErrorCallback()
157 base::Closure task = base::Bind(&ObjectProxy::StartAsyncMethodCall, in CallMethodWithErrorCallback()
172 void ObjectProxy::ConnectToSignal(const std::string& interface_name, in ConnectToSignal()
181 base::Bind(&ObjectProxy::ConnectToSignalInternal, this, interface_name, in ConnectToSignal()
194 void ObjectProxy::SetNameOwnerChangedCallback( in SetNameOwnerChangedCallback()
201 void ObjectProxy::WaitForServiceToBeAvailable( in WaitForServiceToBeAvailable()
208 base::Bind(&ObjectProxy::WaitForServiceToBeAvailableInternal, this)); in WaitForServiceToBeAvailable()
211 void ObjectProxy::Detach() { in Detach()
215 bus_->RemoveFilterFunction(&ObjectProxy::HandleMessageThunk, this); in Detach()
235 ObjectProxy::ResponseCallback ObjectProxy::EmptyResponseCallback() { in EmptyResponseCallback()
239 ObjectProxy::OnPendingCallIsCompleteData::OnPendingCallIsCompleteData( in OnPendingCallIsCompleteData()
240 ObjectProxy* in_object_proxy, in OnPendingCallIsCompleteData()
250 ObjectProxy::OnPendingCallIsCompleteData::~OnPendingCallIsCompleteData() { in ~OnPendingCallIsCompleteData()
253 void ObjectProxy::StartAsyncMethodCall(int timeout_ms, in StartAsyncMethodCall()
263 base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback, in StartAsyncMethodCall()
288 &ObjectProxy::OnPendingCallIsCompleteThunk, in StartAsyncMethodCall()
298 void ObjectProxy::OnPendingCallIsComplete(DBusPendingCall* pending_call, in OnPendingCallIsComplete()
305 base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback, in OnPendingCallIsComplete()
318 void ObjectProxy::RunResponseCallback(ResponseCallback response_callback, in RunResponseCallback()
378 void ObjectProxy::OnPendingCallIsCompleteThunk(DBusPendingCall* pending_call, in OnPendingCallIsCompleteThunk()
382 ObjectProxy* self = data->object_proxy; in OnPendingCallIsCompleteThunk()
389 bool ObjectProxy::ConnectToNameOwnerChangedSignal() { in ConnectToNameOwnerChangedSignal()
395 bus_->AddFilterFunction(&ObjectProxy::HandleMessageThunk, this); in ConnectToNameOwnerChangedSignal()
419 bool ObjectProxy::ConnectToSignalInternal(const std::string& interface_name, in ConnectToSignalInternal()
440 void ObjectProxy::WaitForServiceToBeAvailableInternal() { in WaitForServiceToBeAvailableInternal()
447 base::Bind(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in WaitForServiceToBeAvailableInternal()
456 base::Bind(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in WaitForServiceToBeAvailableInternal()
462 DBusHandlerResult ObjectProxy::HandleMessage(DBusConnection*, in HandleMessage()
516 base::Bind(&ObjectProxy::RunMethod, in HandleMessage()
534 void ObjectProxy::RunMethod(base::TimeTicks start_time, in RunMethod()
554 DBusHandlerResult ObjectProxy::HandleMessageThunk( in HandleMessageThunk()
558 ObjectProxy* self = reinterpret_cast<ObjectProxy*>(user_data); in HandleMessageThunk()
562 void ObjectProxy::LogMethodCallFailure( in LogMethodCallFailure()
585 void ObjectProxy::OnCallMethodError(const std::string& interface_name, in OnCallMethodError()
602 bool ObjectProxy::AddMatchRuleWithCallback( in AddMatchRuleWithCallback()
631 bool ObjectProxy::AddMatchRuleWithoutCallback( in AddMatchRuleWithoutCallback()
653 void ObjectProxy::UpdateNameOwnerAndBlock() { in UpdateNameOwnerAndBlock()
663 DBusHandlerResult ObjectProxy::HandleNameOwnerChanged( in HandleNameOwnerChanged()
681 base::Bind(&ObjectProxy::RunNameOwnerChangedCallback, in HandleNameOwnerChanged()
688 base::Bind(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in HandleNameOwnerChanged()
699 void ObjectProxy::RunNameOwnerChangedCallback(const std::string& old_owner, in RunNameOwnerChangedCallback()
706 void ObjectProxy::RunWaitForServiceToBeAvailableCallbacks( in RunWaitForServiceToBeAvailableCallbacks()