Loading system/bta/le_audio/devices.cc +12 −1 Original line number Diff line number Diff line Loading @@ -2769,8 +2769,19 @@ void LeAudioDeviceGroups::Cleanup(void) { } void LeAudioDeviceGroups::Dump(int fd, int active_group_id) { /* Dump first active group */ for (auto& g : groups_) { if (g->group_id_ == active_group_id) { g->Dump(fd, active_group_id); break; } } /* Dump non active group */ for (auto& g : groups_) { if (g->group_id_ != active_group_id) { g->Dump(fd, active_group_id); } } } Loading Loading
system/bta/le_audio/devices.cc +12 −1 Original line number Diff line number Diff line Loading @@ -2769,8 +2769,19 @@ void LeAudioDeviceGroups::Cleanup(void) { } void LeAudioDeviceGroups::Dump(int fd, int active_group_id) { /* Dump first active group */ for (auto& g : groups_) { if (g->group_id_ == active_group_id) { g->Dump(fd, active_group_id); break; } } /* Dump non active group */ for (auto& g : groups_) { if (g->group_id_ != active_group_id) { g->Dump(fd, active_group_id); } } } Loading