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
49 ConfigValue::ConfigValue(std::string value) { in ConfigValue() function in ConfigValue
57 ConfigValue::ConfigValue(unsigned value) { in ConfigValue() function in ConfigValue
62 ConfigValue::ConfigValue(std::vector<uint8_t> value) { in ConfigValue() function in ConfigValue
69 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
71 std::string ConfigValue::getString() const { in getString()
76 unsigned ConfigValue::getUnsigned() const { in getUnsigned()
81 std::vector<uint8_t> ConfigValue::getBytes() const { in getBytes()
86 bool ConfigValue::parseFromString(std::string in) { in parseFromString()
110 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.cc204 std::map<std::string, ConfigValue>& configMap) { in GetVendorConfigs()
227 configMap.emplace(NAME_NFA_PROPRIETARY_CFG, ConfigValue(nfaPropCfg)); in GetVendorConfigs()
229 ConfigValue(configValue.v1_1.nfaPollBailOutMode ? 1 : 0)); in GetVendorConfigs()
231 ConfigValue(configValue.v1_1.defaultOffHostRoute)); in GetVendorConfigs()
234 ConfigValue(configValue.offHostRouteUicc)); in GetVendorConfigs()
238 ConfigValue(configValue.offHostRouteEse)); in GetVendorConfigs()
241 ConfigValue(configValue.v1_1.defaultRoute)); in GetVendorConfigs()
243 ConfigValue(configValue.v1_1.defaultOffHostRouteFelica)); in GetVendorConfigs()
245 ConfigValue(configValue.defaultIsoDepRoute)); in GetVendorConfigs()
247 ConfigValue(configValue.v1_1.defaultSystemCodeRoute)); in GetVendorConfigs()
[all …]
Dnfc_config.cc74 std::map<std::string, ConfigValue> configMap; in loadConfig()
/system/nfc/src/include/
DNfcAdaptation.h98 void GetVendorConfigs(std::map<std::string, ConfigValue>& configMap);