• Home
  • Raw
  • Download

Lines Matching refs:ObjectProxy

54 ObjectProxy::ReplyCallbackHolder::ReplyCallbackHolder(  in ReplyCallbackHolder()
62 ObjectProxy::ReplyCallbackHolder::ReplyCallbackHolder(
65 ObjectProxy::ReplyCallbackHolder::~ReplyCallbackHolder() { in ~ReplyCallbackHolder()
108 ObjectProxy::ResponseOrErrorCallback
109 ObjectProxy::ReplyCallbackHolder::ReleaseCallback() { in ReleaseCallback()
114 ObjectProxy::ObjectProxy(Bus* bus, in ObjectProxy() function in dbus::ObjectProxy
126 ObjectProxy::~ObjectProxy() { in ~ObjectProxy()
133 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlockWithErrorDetails( in CallMethodAndBlockWithErrorDetails()
172 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlock( in CallMethodAndBlock()
179 void ObjectProxy::CallMethod(MethodCall* method_call, in CallMethod()
183 &ObjectProxy::OnCallMethod, this, method_call->GetInterface(), in CallMethod()
190 void ObjectProxy::CallMethodWithErrorResponse( in CallMethodWithErrorResponse()
205 base::BindOnce(&ObjectProxy::RunResponseOrErrorCallback, this, in CallMethodWithErrorResponse()
224 base::BindOnce(&ObjectProxy::StartAsyncMethodCall, this, timeout_ms, in CallMethodWithErrorResponse()
229 void ObjectProxy::CallMethodWithErrorCallback(MethodCall* method_call, in CallMethodWithErrorCallback()
248 void ObjectProxy::ConnectToSignal(const std::string& interface_name, in ConnectToSignal()
257 base::BindOnce(&ObjectProxy::ConnectToSignalInternal, this, in ConnectToSignal()
271 void ObjectProxy::SetNameOwnerChangedCallback( in SetNameOwnerChangedCallback()
278 void ObjectProxy::WaitForServiceToBeAvailable( in WaitForServiceToBeAvailable()
285 base::BindOnce(&ObjectProxy::WaitForServiceToBeAvailableInternal, this)); in WaitForServiceToBeAvailable()
288 void ObjectProxy::Detach() { in Detach()
292 bus_->RemoveFilterFunction(&ObjectProxy::HandleMessageThunk, this); in Detach()
311 void ObjectProxy::StartAsyncMethodCall(int timeout_ms, in StartAsyncMethodCall()
320 base::BindOnce(&ObjectProxy::RunResponseOrErrorCallback, this, in StartAsyncMethodCall()
341 new PendingCallback(base::BindOnce(&ObjectProxy::OnPendingCallIsComplete, in StartAsyncMethodCall()
352 void ObjectProxy::OnPendingCallIsComplete(ReplyCallbackHolder callback_holder, in OnPendingCallIsComplete()
370 base::BindOnce(&ObjectProxy::RunResponseOrErrorCallback, this, in OnPendingCallIsComplete()
405 void ObjectProxy::RunResponseOrErrorCallback( in RunResponseOrErrorCallback()
423 bool ObjectProxy::ConnectToNameOwnerChangedSignal() { in ConnectToNameOwnerChangedSignal()
429 bus_->AddFilterFunction(&ObjectProxy::HandleMessageThunk, this); in ConnectToNameOwnerChangedSignal()
453 bool ObjectProxy::ConnectToSignalInternal(const std::string& interface_name, in ConnectToSignalInternal()
474 void ObjectProxy::WaitForServiceToBeAvailableInternal() { in WaitForServiceToBeAvailableInternal()
481 base::BindOnce(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in WaitForServiceToBeAvailableInternal()
490 base::BindOnce(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in WaitForServiceToBeAvailableInternal()
496 DBusHandlerResult ObjectProxy::HandleMessage( in HandleMessage()
550 base::Bind(&ObjectProxy::RunMethod, in HandleMessage()
568 void ObjectProxy::RunMethod(base::TimeTicks start_time, in RunMethod()
588 DBusHandlerResult ObjectProxy::HandleMessageThunk( in HandleMessageThunk()
592 ObjectProxy* self = reinterpret_cast<ObjectProxy*>(user_data); in HandleMessageThunk()
596 void ObjectProxy::LogMethodCallFailure( in LogMethodCallFailure()
619 void ObjectProxy::OnCallMethod(const std::string& interface_name, in OnCallMethod()
645 bool ObjectProxy::AddMatchRuleWithCallback( in AddMatchRuleWithCallback()
674 bool ObjectProxy::AddMatchRuleWithoutCallback( in AddMatchRuleWithoutCallback()
696 void ObjectProxy::UpdateNameOwnerAndBlock() { in UpdateNameOwnerAndBlock()
706 DBusHandlerResult ObjectProxy::HandleNameOwnerChanged( in HandleNameOwnerChanged()
724 base::Bind(&ObjectProxy::RunNameOwnerChangedCallback, in HandleNameOwnerChanged()
731 base::Bind(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in HandleNameOwnerChanged()
742 void ObjectProxy::RunNameOwnerChangedCallback(const std::string& old_owner, in RunNameOwnerChangedCallback()
749 void ObjectProxy::RunWaitForServiceToBeAvailableCallbacks( in RunWaitForServiceToBeAvailableCallbacks()