/foundation/communication/bluetooth/frameworks/inner/ipc/parcel/ |
H A D | bluetooth_raw_address.cpp | 31 BluetoothRawAddress *rawAddress = new BluetoothRawAddress(); in Unmarshalling() local 32 if (rawAddress != nullptr && !rawAddress->ReadFromParcel(parcel)) { in Unmarshalling() 33 delete rawAddress; in Unmarshalling() 34 rawAddress = nullptr; in Unmarshalling() 36 return rawAddress; in Unmarshalling()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/ |
H A D | hfp_hf_statemachine.cpp | 847 RawAddress rawAddress(address_); in ProcessNetworkStateEvent() 850 service->NotifyRegistrationStatusChanged(rawAddress, networkState_); in ProcessNetworkStateEvent() 862 RawAddress rawAddress(address_); in ProcessNetworkRoamEvent() 865 service->NotifyRoamingStatusChanged(rawAddress, networkTRoam_); in ProcessNetworkRoamEvent() 871 RawAddress rawAddress(address_); in ProcessNetworkSignalEvent() 874 service->NotifySignalStrengthChanged(rawAddress, networkSignal_); in ProcessNetworkSignalEvent() 880 RawAddress rawAddress(address_); in ProcessBatteryLevelEvent() 883 service->NotifyBatteryLevelChanged(rawAddress, batteryLevel_); in ProcessBatteryLevelEvent() 890 RawAddress rawAddress(address_); in ProcessOperatorEvent() 893 service->NotifyOperatorSelectionChanged(rawAddress, operatorName in ProcessOperatorEvent() [all...] |
H A D | hfp_hf_call_manager.cpp | 115 RawAddress rawAddress(address_); in NotifyCallChanged() 118 service->NotifyCallChanged(rawAddress, call); in NotifyCallChanged()
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_avrcp_tg_proxy.cpp | 155 std::shared_ptr<BluetoothRawAddress> rawAddress(reply.ReadParcelable<BluetoothRawAddress>()); in GetConnectedDevices() 156 if (!rawAddress) { in GetConnectedDevices() 159 vec.push_back(*rawAddress); in GetConnectedDevices() 193 std::shared_ptr<BluetoothRawAddress> rawAddress(reply.ReadParcelable<BluetoothRawAddress>()); in GetDevicesByStates() 194 if (!rawAddress) { in GetDevicesByStates() 197 vec.push_back(*rawAddress); in GetDevicesByStates()
|
H A D | bluetooth_a2dp_src_proxy.cpp | 203 RawAddress rawAddress = RawAddress(address); in GetActiveSinkDevice() local 205 rawAddress, "WriteInterfaceToken error"); in GetActiveSinkDevice() 211 data, reply, option, rawAddress); in GetActiveSinkDevice() 213 rawAddress = RawAddress(reply.ReadString()); in GetActiveSinkDevice() 214 return rawAddress; in GetActiveSinkDevice()
|
H A D | bluetooth_host_proxy.cpp | 662 std::shared_ptr<BluetoothRawAddress> rawAddress(reply.ReadParcelable<BluetoothRawAddress>()); in GetPairedDevices() 663 if (!rawAddress) { in GetPairedDevices() 666 pairedAddr.push_back(*rawAddress); in GetPairedDevices()
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_map_mse.cpp | 157 std::vector<BluetoothRawAddress> rawAddress {};
in GetDevicesByStates() 158 int32_t ret = proxy->GetDevicesByStates(states, rawAddress);
in GetDevicesByStates() 161 for (BluetoothRawAddress rawAddr : rawAddress) {
in GetDevicesByStates()
|
H A D | bluetooth_opp.cpp | 271 std::vector<BluetoothRawAddress> rawAddress {}; in GetDevicesByStates() 272 int32_t ret = proxy->GetDevicesByStates(states, rawAddress); in GetDevicesByStates() 275 for (BluetoothRawAddress rawAddr : rawAddress) { in GetDevicesByStates()
|
H A D | bluetooth_pbap_pse.cpp | 162 std::vector<BluetoothRawAddress> rawAddress {};
in GetDevicesByStates() 163 int32_t ret = proxy->GetDevicesByStates(states, rawAddress);
in GetDevicesByStates() 166 for (BluetoothRawAddress rawAddr : rawAddress) {
in GetDevicesByStates()
|
H A D | bluetooth_a2dp_src.cpp | 332 BluetoothRawAddress rawAddress = proxy->GetActiveSinkDevice(); in GetActiveSinkDevice() local 333 deviceInfo = BluetoothRemoteDevice(rawAddress.GetAddress(), 0); in GetActiveSinkDevice()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/ |
H A D | hfp_ag_profile.cpp | 160 RawAddress rawAddress = RawAddress(address_); in ReadData() local 161 IPowerManager::GetInstance().StatusUpdate(RequestStatus::BUSY, PROFILE_NAME_HFP_AG, rawAddress); in ReadData() 164 IPowerManager::GetInstance().StatusUpdate(RequestStatus::SCO_ON, PROFILE_NAME_HFP_AG, rawAddress); in ReadData() 166 IPowerManager::GetInstance().StatusUpdate(RequestStatus::IDLE, PROFILE_NAME_HFP_AG, rawAddress); in ReadData()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/ble/ |
H A D | ble_central_manager_impl.cpp | 251 RawAddress rawAddress(RawAddress::ConvertToString(peerAddr->addr)); in AdvertisingReport() 254 isStart ? centralManager->pimpl->advDataCache_.SetAdvData(peerAddr->type, rawAddress, std::move(datas)) in AdvertisingReport() 255 : centralManager->pimpl->advDataCache_.AppendAdvData(peerAddr->type, rawAddress, std::move(datas)); in AdvertisingReport() 262 centralManager->pimpl->advDataCache_.ClearAdvData(peerAddr->type, rawAddress); in AdvertisingReport() 288 RawAddress rawAddress(RawAddress::ConvertToString(addr->addr)); in ExAdvertisingReport() 291 isStart ? pCentralManager->pimpl->advDataCache_.SetAdvData(addr->type, rawAddress, std::move(datas)) in ExAdvertisingReport() 292 : pCentralManager->pimpl->advDataCache_.AppendAdvData(addr->type, rawAddress, std::move(datas)); in ExAdvertisingReport() 300 pCentralManager->pimpl->advDataCache_.ClearAdvData(addr->type, rawAddress); in ExAdvertisingReport()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/ |
H A D | a2dp_profile.cpp | 279 RawAddress rawAddress = RawAddress::ConvertToString(addr.addr); in IsActiveDevice() local 284 if (strcmp(activeAddr.GetAddress().c_str(), rawAddress.GetAddress().c_str()) == 0) { in IsActiveDevice() 285 HILOGI("[A2dpProfile] connect address(%{public}s)", GetEncryptAddr(rawAddress.GetAddress()).c_str()); in IsActiveDevice()
|