aboutsummaryrefslogtreecommitdiff
path: root/system/test/common/init_flags.cc
blob: b7d42233a039ec779e6951884a8a7303c5e28f16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <map>
#include <string>

#include "gd/common/init_flags.h"

namespace bluetooth {
namespace common {

bool InitFlags::btm_dm_flush_discovery_queue_on_search_cancel = false;
bool InitFlags::logging_debug_enabled_for_all = false;
bool InitFlags::leaudio_targeted_announcement_reconnection_mode = false;
std::unordered_map<std::string, bool>
    InitFlags::logging_debug_explicit_tag_settings = {};
void InitFlags::Load(const char** flags) {}
void InitFlags::SetAll(bool value) {
  InitFlags::logging_debug_enabled_for_all = value;
}
void InitFlags::SetAllForTesting() {
  InitFlags::logging_debug_enabled_for_all = true;
}

}  // namespace common
}  // namespace bluetooth