Home
last modified time | relevance | path

Searched refs:Dispatcher (Results 1 - 25 of 66) sorted by relevance

123

/foundation/communication/bluetooth_service/services/bluetooth/service/src/util/
H A Ddispatcher.cpp23 Dispatcher::Dispatcher(const std::string &name) : name_(name), taskQueue_(128) in Dispatcher() function in utility::Dispatcher
26 Dispatcher::~Dispatcher() in ~Dispatcher()
29 void Dispatcher::Initialize() in Initialize()
36 thread_ = std::make_unique<std::thread>(&Dispatcher::Run, this, std::move(startPromise)); in Initialize()
41 void Dispatcher::Uninitialize() in Uninitialize()
54 void Dispatcher::PostTask(const std::function<void()> &task) in PostTask()
61 const std::string &Dispatcher::Name() const in Name()
66 void Dispatcher
[all...]
H A Ddispatcher.h28 class Dispatcher { class
31 * @brief Construct a new Dispatcher object.
33 * @param name Dispatcher name.
36 explicit Dispatcher(const std::string &name = "bt-dispatcher");
39 * @brief Destroy the Dispatcher object
43 virtual ~Dispatcher();
46 * @brief Initialize the Dispatcher object
53 * @brief Uninitialize the Dispatcher object
68 * @brief Get Dispatcher name.
70 * @return Dispatcher'
[all...]
H A Dcontext.h63 : name_(name), version_(version), dispatcher_(std::make_unique<Dispatcher>(name)) in Context()
138 * @brief Get the Context's Dispatcher object
139 * @return Dispatcher pointer.
142 Dispatcher *GetDispatcher() in GetDispatcher()
184 std::unique_ptr<Dispatcher> dispatcher_ {};
/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/
H A Dclassic_battery_observer.h43 explicit ClassicBatteryObserverHf(utility::Dispatcher &dispatcher);
49 utility::Dispatcher *dispatcher_ = nullptr;
55 explicit ClassicBatteryObserverAg(utility::Dispatcher &dispatcher);
61 utility::Dispatcher *dispatcher_ = nullptr;
H A Dclassic_battery_observer.cpp25 ClassicBatteryObserverHf::ClassicBatteryObserverHf(utility::Dispatcher &dispatcher) : dispatcher_(&dispatcher) in ClassicBatteryObserverHf()
50 ClassicBatteryObserverAg::ClassicBatteryObserverAg(utility::Dispatcher &dispatcher) : dispatcher_(&dispatcher) in ClassicBatteryObserverAg()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/common/
H A Dpower_manager.h68 static void Initialize(utility::Dispatcher &dispatcher);
130 explicit PowerManager(utility::Dispatcher &dispatcher);
153 static void Initialize(utility::Dispatcher &dispatcher);
H A Dadapter_state_machine.h60 explicit AdapterStateMachine(utility::Dispatcher &dispatch) : dispatch_(dispatch){}; in AdapterStateMachine()
83 utility::Dispatcher &GetDispatch() const;
86 utility::Dispatcher &dispatch_;
H A Dprofile_service_manager.h66 static void Initialize(utility::Dispatcher &dispatch);
191 explicit ProfileServiceManager(utility::Dispatcher &dispatch);
H A Dpower_manager.cpp37 void IPowerManager::Initialize(utility::Dispatcher &dispatcher) in Initialize()
52 void PowerManager::Initialize(utility::Dispatcher &dispatcher) in Initialize()
69 explicit impl(utility::Dispatcher &dispatcher) : dispatcher_(dispatcher) in impl()
79 utility::Dispatcher &dispatcher_;
102 PowerManager::PowerManager(utility::Dispatcher &dispatcher) : pimpl(std::make_unique<PowerManager::impl>(dispatcher)) in PowerManager()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/
H A Da2dp_codec_thread.h34 using utility::Dispatcher;
93 * @brief Get the A2dpCodecThread's Dispatcher object
94 * @return Dispatcher pointer.
97 Dispatcher *GetDispatcher() in GetDispatcher()
166 std::unique_ptr<Dispatcher> dispatcher_ {};
/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H A Dobex_mp_server.h26 const ObexPrivateServerConfig &config, ObexServerObserver &observer, utility::Dispatcher &dispatcher);
41 utility::Dispatcher &dispatcher);
H A Dobex_socket_transport.h66 ObexClientSocketTransport(const Option &option, ObexTransportObserver &observer, utility::Dispatcher &dispatcher);
130 utility::Dispatcher &dispatcher_;
141 ObexServerSocketTransport(const Option &option, ObexTransportObserver &observer, utility::Dispatcher &dispatcher);
207 utility::Dispatcher &dispatcher_;
H A Dobex_server.h79 const ObexPrivateServerConfig &config, ObexServerObserver &observer, utility::Dispatcher &dispatcher);
123 utility::Dispatcher &dispatcher_;
130 utility::Dispatcher &dispatcher);
H A Dobex_client.h118 explicit ObexClient(const ObexClientConfig &config, ObexClientObserver &observer, utility::Dispatcher &dispatcher);
318 utility::Dispatcher &dispatcher_;
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/gatts/
H A Dgeneric_attribute_service.h34 GenericAttributeService(GattServerService &service, utility::Dispatcher &dispatcher);
59 utility::Dispatcher &dispatcher_;
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/gas/
H A Dgeneric_access_service.h43 GenericAccessService(GattServerService &service, utility::Dispatcher &dispatcher);
72 utility::Dispatcher &dispatcher_;
/foundation/communication/bluetooth_service/services/bluetooth/service/src/transport/
H A Dtransport_rfcomm.h39 utility::Dispatcher &dispatcher);
138 utility::Dispatcher &dispatcher_;
H A Dtransport_factory.h41 DataTransportObserver &observer, utility::Dispatcher &dispatcher);
H A Dtransport_def.h56 utility::Dispatcher &dispatcher;
H A Dtransport_factory.cpp24 const RawAddress *addr, uint8_t scn, uint16_t mtu, DataTransportObserver &observer, utility::Dispatcher &dispatcher) in CreateRfcommTransport()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_based_services_manager.h30 GattBasedServicesManager(GattServerService &server, utility::Dispatcher &dispatcher);
H A Dgatt_based_services_manager.cpp24 GattBasedServicesManager::GattBasedServicesManager(GattServerService &server, utility::Dispatcher &dispatcher) in GattBasedServicesManager()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/ble/
H A Dble_security.h41 IAdapterBle &bleAdapter, utility::Dispatcher &dispatch, BaseObserverList<IAdapterBleObserver> &observer);
126 utility::Dispatcher *dispatcher_ = nullptr;
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hid_host/
H A Dhid_host_hogp.h32 using utility::Dispatcher;
86 std::unique_ptr<Dispatcher> dispatcher_ {};
/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/event/
H A Dwifi_direct_event_dispatcher.h41 template<typename Dispatcher, typename Event>

Completed in 7 milliseconds

123