Lines Matching refs:ObjectProxy
58 ObjectProxy::ObjectProxy(Bus* bus, in ObjectProxy() function in dbus::ObjectProxy
70 ObjectProxy::~ObjectProxy() { in ~ObjectProxy()
76 scoped_ptr<Response> ObjectProxy::CallMethodAndBlock(MethodCall* method_call, in CallMethodAndBlock()
115 void ObjectProxy::CallMethod(MethodCall* method_call, in CallMethod()
119 base::Bind(&ObjectProxy::OnCallMethodError, in CallMethod()
126 void ObjectProxy::CallMethodWithErrorCallback(MethodCall* method_call, in CallMethodWithErrorCallback()
138 base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback, in CallMethodWithErrorCallback()
154 base::Closure task = base::Bind(&ObjectProxy::StartAsyncMethodCall, in CallMethodWithErrorCallback()
169 void ObjectProxy::ConnectToSignal(const std::string& interface_name, in ConnectToSignal()
178 base::Bind(&ObjectProxy::ConnectToSignalInternal, in ConnectToSignal()
188 void ObjectProxy::SetNameOwnerChangedCallback( in SetNameOwnerChangedCallback()
195 void ObjectProxy::WaitForServiceToBeAvailable( in WaitForServiceToBeAvailable()
202 base::Bind(&ObjectProxy::WaitForServiceToBeAvailableInternal, this)); in WaitForServiceToBeAvailable()
205 void ObjectProxy::Detach() { in Detach()
209 if (!bus_->RemoveFilterFunction(&ObjectProxy::HandleMessageThunk, this)) { in Detach()
227 ObjectProxy::ResponseCallback ObjectProxy::EmptyResponseCallback() { in EmptyResponseCallback()
231 ObjectProxy::OnPendingCallIsCompleteData::OnPendingCallIsCompleteData( in OnPendingCallIsCompleteData()
232 ObjectProxy* in_object_proxy, in OnPendingCallIsCompleteData()
242 ObjectProxy::OnPendingCallIsCompleteData::~OnPendingCallIsCompleteData() { in ~OnPendingCallIsCompleteData()
245 void ObjectProxy::StartAsyncMethodCall(int timeout_ms, in StartAsyncMethodCall()
255 base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback, in StartAsyncMethodCall()
280 &ObjectProxy::OnPendingCallIsCompleteThunk, in StartAsyncMethodCall()
290 void ObjectProxy::OnPendingCallIsComplete(DBusPendingCall* pending_call, in OnPendingCallIsComplete()
297 base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback, in OnPendingCallIsComplete()
306 void ObjectProxy::RunResponseCallback(ResponseCallback response_callback, in RunResponseCallback()
365 void ObjectProxy::OnPendingCallIsCompleteThunk(DBusPendingCall* pending_call, in OnPendingCallIsCompleteThunk()
369 ObjectProxy* self = data->object_proxy; in OnPendingCallIsCompleteThunk()
377 bool ObjectProxy::ConnectToNameOwnerChangedSignal() { in ConnectToNameOwnerChangedSignal()
386 if (bus_->AddFilterFunction(&ObjectProxy::HandleMessageThunk, this)) { in ConnectToNameOwnerChangedSignal()
414 bool ObjectProxy::ConnectToSignalInternal(const std::string& interface_name, in ConnectToSignalInternal()
435 void ObjectProxy::WaitForServiceToBeAvailableInternal() { in WaitForServiceToBeAvailableInternal()
442 base::Bind(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in WaitForServiceToBeAvailableInternal()
451 base::Bind(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in WaitForServiceToBeAvailableInternal()
457 DBusHandlerResult ObjectProxy::HandleMessage( in HandleMessage()
513 base::Bind(&ObjectProxy::RunMethod, in HandleMessage()
529 void ObjectProxy::RunMethod(base::TimeTicks start_time, in RunMethod()
549 DBusHandlerResult ObjectProxy::HandleMessageThunk( in HandleMessageThunk()
553 ObjectProxy* self = reinterpret_cast<ObjectProxy*>(user_data); in HandleMessageThunk()
557 void ObjectProxy::LogMethodCallFailure( in LogMethodCallFailure()
570 void ObjectProxy::OnCallMethodError(const std::string& interface_name, in OnCallMethodError()
587 bool ObjectProxy::AddMatchRuleWithCallback( in AddMatchRuleWithCallback()
616 bool ObjectProxy::AddMatchRuleWithoutCallback( in AddMatchRuleWithoutCallback()
638 void ObjectProxy::UpdateNameOwnerAndBlock() { in UpdateNameOwnerAndBlock()
648 DBusHandlerResult ObjectProxy::HandleNameOwnerChanged( in HandleNameOwnerChanged()
666 base::Bind(&ObjectProxy::RunNameOwnerChangedCallback, in HandleNameOwnerChanged()
673 base::Bind(&ObjectProxy::RunWaitForServiceToBeAvailableCallbacks, in HandleNameOwnerChanged()
684 void ObjectProxy::RunNameOwnerChangedCallback(const std::string& old_owner, in RunNameOwnerChangedCallback()
691 void ObjectProxy::RunWaitForServiceToBeAvailableCallbacks( in RunWaitForServiceToBeAvailableCallbacks()