Home
last modified time | relevance | path

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

/aosp12/system/nfc/utils/
H A 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()
138 ConfigValue value; in parseFromString()
[all …]
/aosp12/system/nfc/utils/include/
H A 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_;
/aosp12/hardware/nxp/secure_element/pn8x/libese-spi/p73/utils/
H A Dconfig.cpp44 ConfigValue::ConfigValue() { in ConfigValue() function in ConfigValue
49 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
51 std::string ConfigValue::getString() const { in getString()
56 unsigned ConfigValue::getUnsigned() const { in getUnsigned()
61 std::vector<uint8_t> ConfigValue::getBytes() const { in getBytes()
66 bool ConfigValue::parseFromString(std::string in) { in parseFromString()
113 ConfigValue value; in parseFromString()
127 ConfigValue& ConfigFile::getValue(const std::string& key) { in getValue()
H A Dconfig.h22 class ConfigValue {
26 ConfigValue();
54 ConfigValue& getValue(const std::string& key);
56 std::map<std::string, ConfigValue> values_;
/aosp12/hardware/nxp/secure_element/snxxx/libese-spi/p73/utils/
H A Dconfig.cpp63 ConfigValue::ConfigValue() { in ConfigValue() function in ConfigValue
68 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
70 std::string ConfigValue::getString() const { in getString()
75 unsigned ConfigValue::getUnsigned() const { in getUnsigned()
80 std::vector<uint8_t> ConfigValue::getBytes() const { in getBytes()
85 bool ConfigValue::parseFromString(std::string in) { in parseFromString()
132 ConfigValue value; in parseFromString()
146 ConfigValue& ConfigFile::getValue(const std::string& key) { in getValue()
H A Dconfig.h41 class ConfigValue {
45 ConfigValue();
73 ConfigValue& getValue(const std::string& key);
75 std::map<std::string, ConfigValue> values_;
/aosp12/hardware/st/secure_element/ese-spi-driver/utils-lib/
H A Dconfig.cc44 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
46 std::string ConfigValue::getString() const { in getString()
51 unsigned ConfigValue::getUnsigned() const { in getUnsigned()
56 std::vector<uint8_t> ConfigValue::getBytes() const { in getBytes()
61 bool ConfigValue::parseFromString(std::string in) { in parseFromString()
108 ConfigValue value; in parseFromString()
122 ConfigValue& ConfigFile::getValue(const std::string& key) { in getValue()
H A Dconfig.h22 class ConfigValue {
53 ConfigValue& getValue(const std::string& key);
55 std::map<std::string, ConfigValue> values_;
/aosp12/system/nfc/src/adaptation/
H A DNfcAdaptation.cc204 std::map<std::string, ConfigValue>& configMap) { in GetVendorConfigs()
227 configMap.emplace(NAME_NFA_PROPRIETARY_CFG, ConfigValue(nfaPropCfg)); 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()
245 ConfigValue(configValue.defaultIsoDepRoute)); in GetVendorConfigs()
250 ConfigValue(configValue.v1_1.defaultSystemCodePowerState)); in GetVendorConfigs()
252 ConfigValue(configValue.v1_1.offHostSIMPipeId)); in GetVendorConfigs()
254 ConfigValue(configValue.v1_1.offHostESEPipeId)); in GetVendorConfigs()
[all …]
H A Dnfc_config.cc74 std::map<std::string, ConfigValue> configMap; in loadConfig()
/aosp12/system/nfc/src/include/
H A DNfcAdaptation.h98 void GetVendorConfigs(std::map<std::string, ConfigValue>& configMap);
/aosp12/frameworks/base/tools/aapt2/
H A DResources.proto230 repeated ConfigValue config_value = 6;
237 message ConfigValue { message
/aosp12/frameworks/base/tools/aapt2/format/proto/
H A DProtoSerialize.cpp413 pb::ConfigValue* pb_config_value = pb_entry->add_config_value(); in SerializeTableToPb()
H A DProtoDeserialize.cpp521 for (const pb::ConfigValue& pb_config_value : pb_entry.config_value()) { in DeserializePackageFromPb()