Home
last modified time | relevance | path

Searched refs:values_ (Results 1 – 8 of 8) sorted by relevance

/hardware/google/graphics/common/libhwc2.1/libdrmresource/drm/
Ddrmproperty.cpp53 for (int i = 0; i < p->count_values; ++i) values_.push_back(p->values[i]); in init()
83 if (values_.size() == 0) in value()
111 ALOGD("values.size(%zu)", values_.size()); in printProperty()
112 for (uint32_t i = 0; i < values_.size(); i++) { in printProperty()
113 ALOGD("[%d] %" PRId64 "", i, values_[i]); in printProperty()
141 if (values_.size() < 1) in rangeMin()
144 return std::make_tuple(0, values_[0]); in rangeMin()
150 if (values_.size() < 2) in rangeMax()
153 return std::make_tuple(0, values_[1]); in rangeMax()
171 if (value < values_[0] || value > values_[1]) { in validateChange()
[all …]
/hardware/nxp/secure_element/snxxx/libese-spi/p73/utils/
Dconfig.cpp136 values_.emplace(key, value); in parseFromString()
143 return values_.count(key) != 0; in hasKey()
147 CHECK(values_.find(key) != values_.end()); in getValue()
148 auto search = values_.find(key); in getValue()
Dconfig.h72 std::map<std::string, ConfigValue> values_; variable
/hardware/nxp/secure_element/pn8x/libese-spi/p73/utils/
Dconfig.cpp117 values_.emplace(key, value); in parseFromString()
124 return values_.count(key) != 0; in hasKey()
128 auto search = values_.find(key); in getValue()
129 CHECK(search != values_.end()); in getValue()
145 void ConfigFile::clear() { values_.clear(); } in clear()
Dconfig.h56 std::map<std::string, ConfigValue> values_; variable
/hardware/st/secure_element/ese-spi-driver/utils-lib/
Dconfig.cc112 values_.emplace(key, value); in parseFromString()
119 return values_.count(key) != 0; in hasKey()
123 auto search = values_.find(key); in getValue()
124 CHECK(search != values_.end()); in getValue()
140 void ConfigFile::clear() { values_.clear(); } in clear()
Dconfig.h55 std::map<std::string, ConfigValue> values_; variable
/hardware/google/graphics/common/libhwc2.1/libdrmresource/include/
Ddrmproperty.h81 std::vector<uint64_t> values_; variable