Lines Matching refs:Bus

120   void StartMonitoring(Bus* bus) {  in StartMonitoring()
175 Bus::Options::Options() in Options()
180 Bus::Options::~Options() { in ~Options()
183 Bus::Bus(const Options& options) in Bus() function in dbus::Bus
203 Bus::~Bus() { in ~Bus()
216 ObjectProxy* Bus::GetObjectProxy(const std::string& service_name, in GetObjectProxy()
222 ObjectProxy* Bus::GetObjectProxyWithOptions(const std::string& service_name, in GetObjectProxyWithOptions()
242 bool Bus::RemoveObjectProxy(const std::string& service_name, in RemoveObjectProxy()
250 bool Bus::RemoveObjectProxyWithOptions(const std::string& service_name, in RemoveObjectProxyWithOptions()
266 base::Bind(&Bus::RemoveObjectProxyInternal, in RemoveObjectProxyWithOptions()
273 void Bus::RemoveObjectProxyInternal(scoped_refptr<ObjectProxy> object_proxy, in RemoveObjectProxyInternal()
282 ExportedObject* Bus::GetExportedObject(const ObjectPath& object_path) { in GetExportedObject()
298 void Bus::UnregisterExportedObject(const ObjectPath& object_path) { in UnregisterExportedObject()
317 base::Bind(&Bus::UnregisterExportedObjectInternal, in UnregisterExportedObject()
321 void Bus::UnregisterExportedObjectInternal( in UnregisterExportedObjectInternal()
328 ObjectManager* Bus::GetObjectManager(const std::string& service_name, in GetObjectManager()
346 bool Bus::RemoveObjectManager(const std::string& service_name, in RemoveObjectManager()
363 base::Bind(&Bus::RemoveObjectManagerInternal, in RemoveObjectManager()
369 void Bus::RemoveObjectManagerInternal( in RemoveObjectManagerInternal()
381 base::Bind(&Bus::RemoveObjectManagerInternalHelper, in RemoveObjectManagerInternal()
385 void Bus::RemoveObjectManagerInternalHelper( in RemoveObjectManagerInternalHelper()
396 void Bus::GetManagedObjects() { in GetManagedObjects()
403 bool Bus::Connect() { in Connect()
448 void Bus::ClosePrivateConnection() { in ClosePrivateConnection()
456 void Bus::ShutdownAndBlock() { in ShutdownAndBlock()
514 void Bus::ShutdownOnDBusThreadAndBlock() { in ShutdownOnDBusThreadAndBlock()
520 base::Bind(&Bus::ShutdownOnDBusThreadAndBlockInternal, this)); in ShutdownOnDBusThreadAndBlock()
533 void Bus::RequestOwnership(const std::string& service_name, in RequestOwnership()
540 base::Bind(&Bus::RequestOwnershipInternal, in RequestOwnership()
544 void Bus::RequestOwnershipInternal(const std::string& service_name, in RequestOwnershipInternal()
559 bool Bus::RequestOwnershipAndBlock(const std::string& service_name, in RequestOwnershipAndBlock()
584 bool Bus::ReleaseOwnership(const std::string& service_name) { in ReleaseOwnership()
611 bool Bus::SetUpAsyncOperations() { in SetUpAsyncOperations()
623 &Bus::OnAddWatchThunk, in SetUpAsyncOperations()
624 &Bus::OnRemoveWatchThunk, in SetUpAsyncOperations()
625 &Bus::OnToggleWatchThunk, in SetUpAsyncOperations()
631 &Bus::OnAddTimeoutThunk, in SetUpAsyncOperations()
632 &Bus::OnRemoveTimeoutThunk, in SetUpAsyncOperations()
633 &Bus::OnToggleTimeoutThunk, in SetUpAsyncOperations()
640 &Bus::OnDispatchStatusChangedThunk, in SetUpAsyncOperations()
649 DBusMessage* Bus::SendWithReplyAndBlock(DBusMessage* request, in SendWithReplyAndBlock()
659 void Bus::SendWithReply(DBusMessage* request, in SendWithReply()
670 void Bus::Send(DBusMessage* request, uint32_t* serial) { in Send()
678 void Bus::AddFilterFunction(DBusHandleMessageFunction filter_function, in AddFilterFunction()
698 void Bus::RemoveFilterFunction(DBusHandleMessageFunction filter_function, in RemoveFilterFunction()
717 void Bus::AddMatch(const std::string& match_rule, DBusError* error) { in AddMatch()
735 bool Bus::RemoveMatch(const std::string& match_rule, DBusError* error) { in RemoveMatch()
755 bool Bus::TryRegisterObjectPath(const ObjectPath& object_path, in TryRegisterObjectPath()
779 void Bus::UnregisterObjectPath(const ObjectPath& object_path) { in UnregisterObjectPath()
797 void Bus::ShutdownOnDBusThreadAndBlockInternal() { in ShutdownOnDBusThreadAndBlockInternal()
804 void Bus::ProcessAllIncomingDataIfAny() { in ProcessAllIncomingDataIfAny()
821 base::TaskRunner* Bus::GetDBusTaskRunner() { in GetDBusTaskRunner()
828 base::TaskRunner* Bus::GetOriginTaskRunner() { in GetOriginTaskRunner()
833 bool Bus::HasDBusThread() { in HasDBusThread()
837 void Bus::AssertOnOriginThread() { in AssertOnOriginThread()
841 void Bus::AssertOnDBusThread() { in AssertOnDBusThread()
851 std::string Bus::GetServiceOwnerAndBlock(const std::string& service_name, in GetServiceOwnerAndBlock()
890 void Bus::GetServiceOwner(const std::string& service_name, in GetServiceOwner()
896 base::Bind(&Bus::GetServiceOwnerInternal, this, service_name, callback)); in GetServiceOwner()
899 void Bus::GetServiceOwnerInternal(const std::string& service_name, in GetServiceOwnerInternal()
910 void Bus::ListenForServiceOwnerChange( in ListenForServiceOwnerChange()
919 base::Bind(&Bus::ListenForServiceOwnerChangeInternal, in ListenForServiceOwnerChange()
923 void Bus::ListenForServiceOwnerChangeInternal( in ListenForServiceOwnerChangeInternal()
934 AddFilterFunction(Bus::OnServiceOwnerChangedFilter, this); in ListenForServiceOwnerChangeInternal()
964 void Bus::UnlistenForServiceOwnerChange( in UnlistenForServiceOwnerChange()
973 base::Bind(&Bus::UnlistenForServiceOwnerChangeInternal, in UnlistenForServiceOwnerChange()
977 void Bus::UnlistenForServiceOwnerChangeInternal( in UnlistenForServiceOwnerChangeInternal()
1009 RemoveFilterFunction(Bus::OnServiceOwnerChangedFilter, this); in UnlistenForServiceOwnerChangeInternal()
1012 std::string Bus::GetConnectionName() { in GetConnectionName()
1018 dbus_bool_t Bus::OnAddWatch(DBusWatch* raw_watch) { in OnAddWatch()
1030 void Bus::OnRemoveWatch(DBusWatch* raw_watch) { in OnRemoveWatch()
1038 void Bus::OnToggleWatch(DBusWatch* raw_watch) { in OnToggleWatch()
1051 dbus_bool_t Bus::OnAddTimeout(DBusTimeout* raw_timeout) { in OnAddTimeout()
1064 void Bus::OnRemoveTimeout(DBusTimeout* raw_timeout) { in OnRemoveTimeout()
1072 void Bus::OnToggleTimeout(DBusTimeout* raw_timeout) { in OnToggleTimeout()
1083 void Bus::OnDispatchStatusChanged(DBusConnection* connection, in OnDispatchStatusChanged()
1093 base::Bind(&Bus::ProcessAllIncomingDataIfAny, in OnDispatchStatusChanged()
1097 void Bus::OnServiceOwnerChanged(DBusMessage* message) { in OnServiceOwnerChanged()
1136 dbus_bool_t Bus::OnAddWatchThunk(DBusWatch* raw_watch, void* data) { in OnAddWatchThunk()
1137 Bus* self = static_cast<Bus*>(data); in OnAddWatchThunk()
1142 void Bus::OnRemoveWatchThunk(DBusWatch* raw_watch, void* data) { in OnRemoveWatchThunk()
1143 Bus* self = static_cast<Bus*>(data); in OnRemoveWatchThunk()
1148 void Bus::OnToggleWatchThunk(DBusWatch* raw_watch, void* data) { in OnToggleWatchThunk()
1149 Bus* self = static_cast<Bus*>(data); in OnToggleWatchThunk()
1154 dbus_bool_t Bus::OnAddTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnAddTimeoutThunk()
1155 Bus* self = static_cast<Bus*>(data); in OnAddTimeoutThunk()
1160 void Bus::OnRemoveTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnRemoveTimeoutThunk()
1161 Bus* self = static_cast<Bus*>(data); in OnRemoveTimeoutThunk()
1166 void Bus::OnToggleTimeoutThunk(DBusTimeout* raw_timeout, void* data) { in OnToggleTimeoutThunk()
1167 Bus* self = static_cast<Bus*>(data); in OnToggleTimeoutThunk()
1172 void Bus::OnDispatchStatusChangedThunk(DBusConnection* connection, in OnDispatchStatusChangedThunk()
1175 Bus* self = static_cast<Bus*>(data); in OnDispatchStatusChangedThunk()
1180 DBusHandlerResult Bus::OnServiceOwnerChangedFilter( in OnServiceOwnerChangedFilter()
1187 Bus* self = static_cast<Bus*>(data); in OnServiceOwnerChangedFilter()