• Home
  • Raw
  • Download

Lines Matching refs:Bus

126   void StartMonitoring(Bus* bus) {  in StartMonitoring()
181 Bus::Options::Options() in Options()
186 Bus::Options::~Options() { in ~Options()
189 Bus::Bus(const Options& options) in Bus() function in dbus::Bus
210 Bus::~Bus() { in ~Bus()
223 ObjectProxy* Bus::GetObjectProxy(const std::string& service_name, in GetObjectProxy()
229 ObjectProxy* Bus::GetObjectProxyWithOptions(const std::string& service_name, in GetObjectProxyWithOptions()
249 bool Bus::RemoveObjectProxy(const std::string& service_name, in RemoveObjectProxy()
257 bool Bus::RemoveObjectProxyWithOptions(const std::string& service_name, in RemoveObjectProxyWithOptions()
273 base::Bind(&Bus::RemoveObjectProxyInternal, in RemoveObjectProxyWithOptions()
280 void Bus::RemoveObjectProxyInternal(scoped_refptr<ObjectProxy> object_proxy, in RemoveObjectProxyInternal()
289 ExportedObject* Bus::GetExportedObject(const ObjectPath& object_path) { in GetExportedObject()
305 void Bus::UnregisterExportedObject(const ObjectPath& object_path) { in UnregisterExportedObject()
324 base::Bind(&Bus::UnregisterExportedObjectInternal, in UnregisterExportedObject()
328 void Bus::UnregisterExportedObjectInternal( in UnregisterExportedObjectInternal()
335 ObjectManager* Bus::GetObjectManager(const std::string& service_name, in GetObjectManager()
353 void Bus::RemoveObjectManager(const std::string& service_name, in RemoveObjectManager()
366 void Bus::GetManagedObjects() { in GetManagedObjects()
373 bool Bus::Connect() { in Connect()
418 AddFilterFunction(Bus::OnConnectionDisconnectedFilter, this); in Connect()
424 void Bus::ClosePrivateConnection() { in ClosePrivateConnection()
432 void Bus::ShutdownAndBlock() { in ShutdownAndBlock()
473 RemoveFilterFunction(Bus::OnConnectionDisconnectedFilter, this); in ShutdownAndBlock()
486 void Bus::ShutdownOnDBusThreadAndBlock() { in ShutdownOnDBusThreadAndBlock()
492 base::Bind(&Bus::ShutdownOnDBusThreadAndBlockInternal, this)); in ShutdownOnDBusThreadAndBlock()
505 void Bus::RequestOwnership(const std::string& service_name, in RequestOwnership()
512 base::Bind(&Bus::RequestOwnershipInternal, in RequestOwnership()
516 void Bus::RequestOwnershipInternal(const std::string& service_name, in RequestOwnershipInternal()
531 bool Bus::RequestOwnershipAndBlock(const std::string& service_name, in RequestOwnershipAndBlock()
556 bool Bus::ReleaseOwnership(const std::string& service_name) { in ReleaseOwnership()
583 bool Bus::SetUpAsyncOperations() { in SetUpAsyncOperations()
595 &Bus::OnAddWatchThunk, in SetUpAsyncOperations()
596 &Bus::OnRemoveWatchThunk, in SetUpAsyncOperations()
597 &Bus::OnToggleWatchThunk, in SetUpAsyncOperations()
603 &Bus::OnAddTimeoutThunk, in SetUpAsyncOperations()
604 &Bus::OnRemoveTimeoutThunk, in SetUpAsyncOperations()
605 &Bus::OnToggleTimeoutThunk, in SetUpAsyncOperations()
612 &Bus::OnDispatchStatusChangedThunk, in SetUpAsyncOperations()
621 DBusMessage* Bus::SendWithReplyAndBlock(DBusMessage* request, in SendWithReplyAndBlock()
631 void Bus::SendWithReply(DBusMessage* request, in SendWithReply()
642 void Bus::Send(DBusMessage* request, uint32* serial) { in Send()
650 bool Bus::AddFilterFunction(DBusHandleMessageFunction filter_function, in AddFilterFunction()
671 bool Bus::RemoveFilterFunction(DBusHandleMessageFunction filter_function, in RemoveFilterFunction()
691 void Bus::AddMatch(const std::string& match_rule, DBusError* error) { in AddMatch()
709 bool Bus::RemoveMatch(const std::string& match_rule, DBusError* error) { in RemoveMatch()
729 bool Bus::TryRegisterObjectPath(const ObjectPath& object_path, in TryRegisterObjectPath()
753 void Bus::UnregisterObjectPath(const ObjectPath& object_path) { in UnregisterObjectPath()
771 void Bus::ShutdownOnDBusThreadAndBlockInternal() { in ShutdownOnDBusThreadAndBlockInternal()
778 void Bus::ProcessAllIncomingDataIfAny() { in ProcessAllIncomingDataIfAny()
796 base::TaskRunner* Bus::GetDBusTaskRunner() { in GetDBusTaskRunner()
803 base::TaskRunner* Bus::GetOriginTaskRunner() { in GetOriginTaskRunner()
808 bool Bus::HasDBusThread() { in HasDBusThread()
812 void Bus::AssertOnOriginThread() { in AssertOnOriginThread()
816 void Bus::AssertOnDBusThread() { in AssertOnDBusThread()
826 std::string Bus::GetServiceOwnerAndBlock(const std::string& service_name, in GetServiceOwnerAndBlock()
865 void Bus::GetServiceOwner(const std::string& service_name, in GetServiceOwner()
871 base::Bind(&Bus::GetServiceOwnerInternal, this, service_name, callback)); in GetServiceOwner()
874 void Bus::GetServiceOwnerInternal(const std::string& service_name, in GetServiceOwnerInternal()
885 void Bus::ListenForServiceOwnerChange( in ListenForServiceOwnerChange()
894 base::Bind(&Bus::ListenForServiceOwnerChangeInternal, in ListenForServiceOwnerChange()
898 void Bus::ListenForServiceOwnerChangeInternal( in ListenForServiceOwnerChangeInternal()
910 AddFilterFunction(Bus::OnServiceOwnerChangedFilter, this); in ListenForServiceOwnerChangeInternal()
942 void Bus::UnlistenForServiceOwnerChange( in UnlistenForServiceOwnerChange()
951 base::Bind(&Bus::UnlistenForServiceOwnerChangeInternal, in UnlistenForServiceOwnerChange()
955 void Bus::UnlistenForServiceOwnerChangeInternal( in UnlistenForServiceOwnerChangeInternal()
988 RemoveFilterFunction(Bus::OnServiceOwnerChangedFilter, this); in UnlistenForServiceOwnerChangeInternal()
993 dbus_bool_t Bus::OnAddWatch(DBusWatch* raw_watch) { in OnAddWatch()
1005 void Bus::OnRemoveWatch(DBusWatch* raw_watch) { in OnRemoveWatch()
1013 void Bus::OnToggleWatch(DBusWatch* raw_watch) { in OnToggleWatch()
1026 dbus_bool_t Bus::OnAddTimeout(DBusTimeout* raw_timeout) { in OnAddTimeout()
1039 void Bus::OnRemoveTimeout(DBusTimeout* raw_timeout) { in OnRemoveTimeout()
1047 void Bus::OnToggleTimeout(DBusTimeout* raw_timeout) { in OnToggleTimeout()
1058 void Bus::OnDispatchStatusChanged(DBusConnection* connection, in OnDispatchStatusChanged()
1068 base::Bind(&Bus::ProcessAllIncomingDataIfAny, in OnDispatchStatusChanged()
1072 void Bus::OnConnectionDisconnected(DBusConnection* connection) { in OnConnectionDisconnected()
1085 void Bus::OnServiceOwnerChanged(DBusMessage* message) { in OnServiceOwnerChanged()
1124 dbus_bool_t Bus::OnAddWatchThunk(DBusWatch* raw_watch, void* data) { in OnAddWatchThunk()
1125 Bus* self = static_cast<Bus*>(data); in OnAddWatchThunk()
1130 void Bus::OnRemoveWatchThunk(DBusWatch* raw_watch, void* data) { in OnRemoveWatchThunk()
1131 Bus* self = static_cast<Bus*>(data); in OnRemoveWatchThunk()
1136 void Bus::OnToggleWatchThunk(DBusWatch* raw_watch, void* data) { in OnToggleWatchThunk()
1137 Bus* self = static_cast<Bus*>(data); in OnToggleWatchThunk()
1142 dbus_bool_t Bus::OnAddTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnAddTimeoutThunk()
1143 Bus* self = static_cast<Bus*>(data); in OnAddTimeoutThunk()
1148 void Bus::OnRemoveTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnRemoveTimeoutThunk()
1149 Bus* self = static_cast<Bus*>(data); in OnRemoveTimeoutThunk()
1154 void Bus::OnToggleTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnToggleTimeoutThunk()
1155 Bus* self = static_cast<Bus*>(data); in OnToggleTimeoutThunk()
1160 void Bus::OnDispatchStatusChangedThunk(DBusConnection* connection, in OnDispatchStatusChangedThunk()
1163 Bus* self = static_cast<Bus*>(data); in OnDispatchStatusChangedThunk()
1168 DBusHandlerResult Bus::OnConnectionDisconnectedFilter( in OnConnectionDisconnectedFilter()
1175 Bus* self = static_cast<Bus*>(data); in OnConnectionDisconnectedFilter()
1183 DBusHandlerResult Bus::OnServiceOwnerChangedFilter( in OnServiceOwnerChangedFilter()
1190 Bus* self = static_cast<Bus*>(data); in OnServiceOwnerChangedFilter()