/ohos5.0/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()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/ |
H A D | hfp_hf_statemachine.cpp | 847 RawAddress rawAddress(address_); in ProcessNetworkStateEvent() local 862 RawAddress rawAddress(address_); in ProcessNetworkRoamEvent() local 865 service->NotifyRoamingStatusChanged(rawAddress, networkTRoam_); in ProcessNetworkRoamEvent() 871 RawAddress rawAddress(address_); in ProcessNetworkSignalEvent() local 874 service->NotifySignalStrengthChanged(rawAddress, networkSignal_); in ProcessNetworkSignalEvent() 880 RawAddress rawAddress(address_); in ProcessBatteryLevelEvent() local 883 service->NotifyBatteryLevelChanged(rawAddress, batteryLevel_); in ProcessBatteryLevelEvent() 890 RawAddress rawAddress(address_); in ProcessOperatorEvent() local 931 RawAddress rawAddress(address_); in ProcessSubscriberNumberEvent() local 944 RawAddress rawAddress(address_); in ProcessInbandRingEvent() local [all …]
|
H A D | hfp_hf_call_manager.cpp | 115 RawAddress rawAddress(address_); in NotifyCallChanged() local 118 service->NotifyCallChanged(rawAddress, call); in NotifyCallChanged()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_avrcp_tg_proxy.cpp | 162 … std::shared_ptr<BluetoothRawAddress> rawAddress(reply.ReadParcelable<BluetoothRawAddress>()); in GetConnectedDevices() local 163 if (!rawAddress) { in GetConnectedDevices() 166 vec.push_back(*rawAddress); in GetConnectedDevices() 204 … std::shared_ptr<BluetoothRawAddress> rawAddress(reply.ReadParcelable<BluetoothRawAddress>()); in GetDevicesByStates() local 205 if (!rawAddress) { in GetDevicesByStates() 208 vec.push_back(*rawAddress); in GetDevicesByStates()
|
H A D | bluetooth_a2dp_src_proxy.cpp | 210 RawAddress rawAddress = RawAddress(address); in GetActiveSinkDevice() local 212 rawAddress, "WriteInterfaceToken error"); in GetActiveSinkDevice() 218 data, reply, option, rawAddress); in GetActiveSinkDevice() 220 rawAddress = RawAddress(reply.ReadString()); in GetActiveSinkDevice() 221 return rawAddress; in GetActiveSinkDevice()
|
H A D | bluetooth_host_proxy.cpp | 635 … std::shared_ptr<BluetoothRawAddress> rawAddress(reply.ReadParcelable<BluetoothRawAddress>()); in GetPairedDevices() local 636 if (!rawAddress) { in GetPairedDevices() 639 pairedAddr.push_back(*rawAddress); in GetPairedDevices()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_map_mse.cpp | 160 std::vector<BluetoothRawAddress> rawAddress {}; in GetDevicesByStates() local 161 int32_t ret = proxy->GetDevicesByStates(states, rawAddress); in GetDevicesByStates() 164 for (BluetoothRawAddress rawAddr : rawAddress) { in GetDevicesByStates()
|
H A D | bluetooth_pbap_pse.cpp | 165 std::vector<BluetoothRawAddress> rawAddress {}; in GetDevicesByStates() local 166 int32_t ret = proxy->GetDevicesByStates(states, rawAddress); in GetDevicesByStates() 169 for (BluetoothRawAddress rawAddr : rawAddress) { in GetDevicesByStates()
|
H A D | bluetooth_opp.cpp | 274 std::vector<BluetoothRawAddress> rawAddress {}; in GetDevicesByStates() local 275 int32_t ret = proxy->GetDevicesByStates(states, rawAddress); in GetDevicesByStates() 278 for (BluetoothRawAddress rawAddr : rawAddress) { in GetDevicesByStates()
|
H A D | bluetooth_a2dp_src.cpp | 335 BluetoothRawAddress rawAddress = proxy->GetActiveSinkDevice(); in GetActiveSinkDevice() local 336 deviceInfo = BluetoothRemoteDevice(rawAddress.GetAddress(), 0); in GetActiveSinkDevice()
|
/ohos5.0/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()
|
/ohos5.0/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() local 254 …isStart ? centralManager->pimpl->advDataCache_.SetAdvData(peerAddr->type, rawAddress, std::move(da… 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() local 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()
|
/ohos5.0/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()
|