android13/packages/modules/Bluetooth/system/gd/metrics/utils.h

14 lines
393 B
C++

#pragma once
#include <string>
#include <utility>
#include <vector>
#include "os/metrics.h"
namespace bluetooth {
namespace metrics {
bool GetBootId(std::string* boot_id);
int GetArgumentTypeFromList(
std::vector<std::pair<os::ArgumentType, int>>& argument_list, os::ArgumentType argumentType);
os::LeConnectionType GetLeConnectionTypeFromCID(int fixed_cid);
} // namespace metrics
}