Home
last modified time | relevance | path

Searched refs:GetDevicesByStates (Results 1 - 25 of 132) sorted by relevance

123456

/foundation/communication/dsoftbus/core/common/dfx/statistics/instant/
H A Dbt_statistic.cpp166 A2dpSource::GetProfile()->GetDevicesByStates(connectState_, devices); in GetA2dpSrcDeviceInfo()
173 devices = A2dpSink::GetProfile()->GetDevicesByStates(connectState_); in GetA2dpSinkDeviceInfo()
180 devices = AvrcpController::GetProfile()->GetDevicesByStates(connectState_); in GetAvrCTDeviceInfo()
187 devices = AvrcpTarget::GetProfile()->GetDevicesByStates(connectState_); in GetAvrTGDeviceInfo()
194 devices = HandsFreeAudioGateway::GetProfile()->GetDevicesByStates(connectState_); in GetHfpAGDeviceInfo()
201 devices = HandsFreeUnit::GetProfile()->GetDevicesByStates(connectState_); in GetHfpHFDeviceInfo()
208 MapMse::GetProfile()->GetDevicesByStates(connectState_, devices); in GetMapMseDeviceInfo()
215 PbapPse::GetProfile()->GetDevicesByStates(connectState_, devices); in GetPbapPseDeviceInfo()
222 HidHost::GetProfile()->GetDevicesByStates(connectState_, devices); in GetHidHostDeviceInfo()
229 Opp::GetProfile()->GetDevicesByStates(connectState in GetOppDeviceInfo()
[all...]
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_pan.cpp62 int32_t GetDevicesByStates(std::vector<int> states, std::vector<BluetoothRemoteDevice>& result) in GetDevicesByStates() function
74 int32_t ret = proxy->GetDevicesByStates(tmpStates, rawDevices); in GetDevicesByStates()
192 int32_t Pan::GetDevicesByStates(std::vector<int> states, std::vector<BluetoothRemoteDevice> &result) in GetDevicesByStates() function in OHOS::Bluetooth::Pan
201 return pimpl->GetDevicesByStates(states, result); in GetDevicesByStates()
H A Dbluetooth_hid_host.cpp64 int32_t GetDevicesByStates(std::vector<int> states, std::vector<BluetoothRemoteDevice>& result) in GetDevicesByStates() function
74 int32_t ret = proxy->GetDevicesByStates(tmpStates, rawDevices); in GetDevicesByStates()
235 int32_t HidHost::GetDevicesByStates(std::vector<int> states, std::vector<BluetoothRemoteDevice> &result) in GetDevicesByStates() function in OHOS::Bluetooth::HidHost
245 return pimpl->GetDevicesByStates(states, result); in GetDevicesByStates()
H A Dbluetooth_map_mse.cpp150 int32_t MapMse::GetDevicesByStates(const std::vector<int32_t> &states, std::vector<BluetoothRemoteDevice> &result) const in GetDevicesByStates() function in OHOS::Bluetooth::MapMse
158 int32_t ret = proxy->GetDevicesByStates(states, rawAddress); in GetDevicesByStates()
/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_gatt_manager.h62 std::vector<BluetoothRemoteDevice> GetDevicesByStates(const std::array<int, GATT_CONNECTION_STATE_NUM> &states);
H A Dbluetooth_a2dp_snk.h82 std::vector<BluetoothRemoteDevice> GetDevicesByStates(std::vector<int> states) const;
H A Dbluetooth_pan.h87 int32_t GetDevicesByStates(std::vector<int> states, std::vector<BluetoothRemoteDevice> &result);
H A Dbluetooth_pbap_pse.h86 int32_t GetDevicesByStates(const std::vector<int32_t> &states, std::vector<BluetoothRemoteDevice> &result) const;
H A Dbluetooth_map_mse.h86 int32_t GetDevicesByStates(const std::vector<int32_t> &states, std::vector<BluetoothRemoteDevice> &result) const;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_pan_server.h42 int32_t GetDevicesByStates(
H A Dbluetooth_a2dp_sink_server.h40 std::vector<RawAddress> GetDevicesByStates(const std::vector<int32_t> &states) override;
/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_pan.h78 virtual std::vector<RawAddress> GetDevicesByStates(std::vector<int> states) = 0;
H A Dinterface_profile_hid_host.h78 virtual std::vector<RawAddress> GetDevicesByStates(std::vector<int> states) = 0;
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_a2dp_sink.h39 virtual std::vector<RawAddress> GetDevicesByStates(const std::vector<int32_t> &states) = 0;
H A Di_bluetooth_opp.h42 virtual int32_t GetDevicesByStates(const std::vector<int32_t> &states,
H A Di_bluetooth_map_mse.h29 virtual int32_t GetDevicesByStates(const std::vector<int32_t> &states,
H A Di_bluetooth_pan.h36 virtual int32_t GetDevicesByStates(const std::vector<int32_t> &states,
H A Di_bluetooth_pbap_pse.h30 virtual int32_t GetDevicesByStates(const std::vector<int32_t> &states,
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_pan_proxy.h32 int32_t GetDevicesByStates(const std::vector<int32_t> &states, std::vector<BluetoothRawAddress> &result) override;
H A Dbluetooth_a2dp_sink_proxy.h37 std::vector<RawAddress> GetDevicesByStates(const std::vector<int32_t> &states) override;
H A Dbluetooth_opp_proxy.h38 int32_t GetDevicesByStates(const std::vector<int32_t> &states, std::vector<BluetoothRawAddress>& result) override;
H A Dbluetooth_pbap_pse_proxy.h30 int32_t GetDevicesByStates(const std::vector<int32_t> &states,
H A Dbluetooth_map_mse_proxy.h30 int32_t GetDevicesByStates(const std::vector<int32_t> &states,
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_a2dp_sink_server.cpp178 std::vector<RawAddress> BluetoothA2dpSinkServer::GetDevicesByStates(const std::vector<int32_t> &states) in GetDevicesByStates() function in OHOS::Bluetooth::BluetoothA2dpSinkServer
192 rawDevices = pimpl->a2dpSnkService_->GetDevicesByStates(tmpStates); in GetDevicesByStates()
H A Dbluetooth_pan_server.cpp177 int32_t BluetoothPanServer::GetDevicesByStates(const std::vector<int32_t> &states, in GetDevicesByStates() function in OHOS::Bluetooth::BluetoothPanServer
186 std::vector<bluetooth::RawAddress> serviceDeviceList = pimpl->panService_->GetDevicesByStates(states); in GetDevicesByStates()

Completed in 7 milliseconds

123456