Home
last modified time | relevance | path

Searched refs:ConfigValue (Results 1 – 5 of 5) sorted by relevance

/system/nfc/utils/
Dconfig.cc44 ConfigValue::ConfigValue() {} in ConfigValue() function in ConfigValue
46 ConfigValue::ConfigValue(std::string value) { in ConfigValue() function in ConfigValue
53 ConfigValue::ConfigValue(unsigned value) { in ConfigValue() function in ConfigValue
58 ConfigValue::ConfigValue(std::vector<uint8_t> value) { in ConfigValue() function in ConfigValue
64 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
66 std::string ConfigValue::getString() const { in getString()
71 unsigned ConfigValue::getUnsigned() const { in getUnsigned()
76 std::vector<uint8_t> ConfigValue::getBytes() const { in getBytes()
81 bool ConfigValue::parseFromString(std::string in) { in parseFromString()
105 void ConfigFile::addConfig(const std::string& key, ConfigValue& value) { in addConfig()
[all …]
/system/nfc/utils/include/
Dconfig.h22 class ConfigValue {
26 ConfigValue();
27 explicit ConfigValue(std::string);
28 explicit ConfigValue(unsigned);
29 explicit ConfigValue(std::vector<uint8_t>);
48 void addConfig(const std::string& config, ConfigValue& value);
59 ConfigValue& getValue(const std::string& key);
61 std::map<std::string, ConfigValue> values_;
/system/nfc/src/adaptation/
DNfcAdaptation.cc178 std::map<std::string, ConfigValue>& configMap) { in GetVendorConfigs()
201 configMap.emplace(NAME_NFA_PROPRIETARY_CFG, ConfigValue(nfaPropCfg)); in GetVendorConfigs()
203 ConfigValue(configValue.v1_1.nfaPollBailOutMode ? 1 : 0)); in GetVendorConfigs()
205 ConfigValue(configValue.v1_1.defaultOffHostRoute)); in GetVendorConfigs()
208 ConfigValue(configValue.offHostRouteUicc)); in GetVendorConfigs()
212 ConfigValue(configValue.offHostRouteEse)); in GetVendorConfigs()
215 ConfigValue(configValue.v1_1.defaultRoute)); in GetVendorConfigs()
217 ConfigValue(configValue.v1_1.defaultOffHostRouteFelica)); in GetVendorConfigs()
219 ConfigValue(configValue.defaultIsoDepRoute)); in GetVendorConfigs()
221 ConfigValue(configValue.v1_1.defaultSystemCodeRoute)); in GetVendorConfigs()
[all …]
Dnfc_config.cc53 std::map<std::string, ConfigValue> configMap; in loadConfig()
/system/nfc/src/include/
DNfcAdaptation.h94 void GetVendorConfigs(std::map<std::string, ConfigValue>& configMap);