• 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 bool Bus::RemoveObjectManager(const std::string& service_name, in RemoveObjectManager()
370 base::Bind(&Bus::RemoveObjectManagerInternal, in RemoveObjectManager()
376 void Bus::RemoveObjectManagerInternal( in RemoveObjectManagerInternal()
388 base::Bind(&Bus::RemoveObjectManagerInternalHelper, in RemoveObjectManagerInternal()
392 void Bus::RemoveObjectManagerInternalHelper( in RemoveObjectManagerInternalHelper()
403 void Bus::GetManagedObjects() { in GetManagedObjects()
410 bool Bus::Connect() { in Connect()
455 AddFilterFunction(Bus::OnConnectionDisconnectedFilter, this); in Connect()
461 void Bus::ClosePrivateConnection() { in ClosePrivateConnection()
469 void Bus::ShutdownAndBlock() { in ShutdownAndBlock()
516 RemoveFilterFunction(Bus::OnConnectionDisconnectedFilter, this); in ShutdownAndBlock()
529 void Bus::ShutdownOnDBusThreadAndBlock() { in ShutdownOnDBusThreadAndBlock()
535 base::Bind(&Bus::ShutdownOnDBusThreadAndBlockInternal, this)); in ShutdownOnDBusThreadAndBlock()
548 void Bus::RequestOwnership(const std::string& service_name, in RequestOwnership()
555 base::Bind(&Bus::RequestOwnershipInternal, in RequestOwnership()
559 void Bus::RequestOwnershipInternal(const std::string& service_name, in RequestOwnershipInternal()
574 bool Bus::RequestOwnershipAndBlock(const std::string& service_name, in RequestOwnershipAndBlock()
599 bool Bus::ReleaseOwnership(const std::string& service_name) { in ReleaseOwnership()
626 bool Bus::SetUpAsyncOperations() { in SetUpAsyncOperations()
638 &Bus::OnAddWatchThunk, in SetUpAsyncOperations()
639 &Bus::OnRemoveWatchThunk, in SetUpAsyncOperations()
640 &Bus::OnToggleWatchThunk, in SetUpAsyncOperations()
646 &Bus::OnAddTimeoutThunk, in SetUpAsyncOperations()
647 &Bus::OnRemoveTimeoutThunk, in SetUpAsyncOperations()
648 &Bus::OnToggleTimeoutThunk, in SetUpAsyncOperations()
655 &Bus::OnDispatchStatusChangedThunk, in SetUpAsyncOperations()
664 DBusMessage* Bus::SendWithReplyAndBlock(DBusMessage* request, in SendWithReplyAndBlock()
674 void Bus::SendWithReply(DBusMessage* request, in SendWithReply()
685 void Bus::Send(DBusMessage* request, uint32* serial) { in Send()
693 bool Bus::AddFilterFunction(DBusHandleMessageFunction filter_function, in AddFilterFunction()
714 bool Bus::RemoveFilterFunction(DBusHandleMessageFunction filter_function, in RemoveFilterFunction()
734 void Bus::AddMatch(const std::string& match_rule, DBusError* error) { in AddMatch()
752 bool Bus::RemoveMatch(const std::string& match_rule, DBusError* error) { in RemoveMatch()
772 bool Bus::TryRegisterObjectPath(const ObjectPath& object_path, in TryRegisterObjectPath()
796 void Bus::UnregisterObjectPath(const ObjectPath& object_path) { in UnregisterObjectPath()
814 void Bus::ShutdownOnDBusThreadAndBlockInternal() { in ShutdownOnDBusThreadAndBlockInternal()
821 void Bus::ProcessAllIncomingDataIfAny() { in ProcessAllIncomingDataIfAny()
839 base::TaskRunner* Bus::GetDBusTaskRunner() { in GetDBusTaskRunner()
846 base::TaskRunner* Bus::GetOriginTaskRunner() { in GetOriginTaskRunner()
851 bool Bus::HasDBusThread() { in HasDBusThread()
855 void Bus::AssertOnOriginThread() { in AssertOnOriginThread()
859 void Bus::AssertOnDBusThread() { in AssertOnDBusThread()
869 std::string Bus::GetServiceOwnerAndBlock(const std::string& service_name, in GetServiceOwnerAndBlock()
908 void Bus::GetServiceOwner(const std::string& service_name, in GetServiceOwner()
914 base::Bind(&Bus::GetServiceOwnerInternal, this, service_name, callback)); in GetServiceOwner()
917 void Bus::GetServiceOwnerInternal(const std::string& service_name, in GetServiceOwnerInternal()
928 void Bus::ListenForServiceOwnerChange( in ListenForServiceOwnerChange()
937 base::Bind(&Bus::ListenForServiceOwnerChangeInternal, in ListenForServiceOwnerChange()
941 void Bus::ListenForServiceOwnerChangeInternal( in ListenForServiceOwnerChangeInternal()
953 AddFilterFunction(Bus::OnServiceOwnerChangedFilter, this); in ListenForServiceOwnerChangeInternal()
985 void Bus::UnlistenForServiceOwnerChange( in UnlistenForServiceOwnerChange()
994 base::Bind(&Bus::UnlistenForServiceOwnerChangeInternal, in UnlistenForServiceOwnerChange()
998 void Bus::UnlistenForServiceOwnerChangeInternal( in UnlistenForServiceOwnerChangeInternal()
1031 RemoveFilterFunction(Bus::OnServiceOwnerChangedFilter, this); in UnlistenForServiceOwnerChangeInternal()
1036 dbus_bool_t Bus::OnAddWatch(DBusWatch* raw_watch) { in OnAddWatch()
1048 void Bus::OnRemoveWatch(DBusWatch* raw_watch) { in OnRemoveWatch()
1056 void Bus::OnToggleWatch(DBusWatch* raw_watch) { in OnToggleWatch()
1069 dbus_bool_t Bus::OnAddTimeout(DBusTimeout* raw_timeout) { in OnAddTimeout()
1082 void Bus::OnRemoveTimeout(DBusTimeout* raw_timeout) { in OnRemoveTimeout()
1090 void Bus::OnToggleTimeout(DBusTimeout* raw_timeout) { in OnToggleTimeout()
1101 void Bus::OnDispatchStatusChanged(DBusConnection* connection, in OnDispatchStatusChanged()
1111 base::Bind(&Bus::ProcessAllIncomingDataIfAny, in OnDispatchStatusChanged()
1115 void Bus::OnConnectionDisconnected(DBusConnection* connection) { in OnConnectionDisconnected()
1128 void Bus::OnServiceOwnerChanged(DBusMessage* message) { in OnServiceOwnerChanged()
1167 dbus_bool_t Bus::OnAddWatchThunk(DBusWatch* raw_watch, void* data) { in OnAddWatchThunk()
1168 Bus* self = static_cast<Bus*>(data); in OnAddWatchThunk()
1173 void Bus::OnRemoveWatchThunk(DBusWatch* raw_watch, void* data) { in OnRemoveWatchThunk()
1174 Bus* self = static_cast<Bus*>(data); in OnRemoveWatchThunk()
1179 void Bus::OnToggleWatchThunk(DBusWatch* raw_watch, void* data) { in OnToggleWatchThunk()
1180 Bus* self = static_cast<Bus*>(data); in OnToggleWatchThunk()
1185 dbus_bool_t Bus::OnAddTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnAddTimeoutThunk()
1186 Bus* self = static_cast<Bus*>(data); in OnAddTimeoutThunk()
1191 void Bus::OnRemoveTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnRemoveTimeoutThunk()
1192 Bus* self = static_cast<Bus*>(data); in OnRemoveTimeoutThunk()
1197 void Bus::OnToggleTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnToggleTimeoutThunk()
1198 Bus* self = static_cast<Bus*>(data); in OnToggleTimeoutThunk()
1203 void Bus::OnDispatchStatusChangedThunk(DBusConnection* connection, in OnDispatchStatusChangedThunk()
1206 Bus* self = static_cast<Bus*>(data); in OnDispatchStatusChangedThunk()
1211 DBusHandlerResult Bus::OnConnectionDisconnectedFilter( in OnConnectionDisconnectedFilter()
1218 Bus* self = static_cast<Bus*>(data); in OnConnectionDisconnectedFilter()
1226 DBusHandlerResult Bus::OnServiceOwnerChangedFilter( in OnServiceOwnerChangedFilter()
1233 Bus* self = static_cast<Bus*>(data); in OnServiceOwnerChangedFilter()