Lines Matching full:second
53 properties_.find(name)->second.IsTypeCompatible<bool>();
58 properties_.find(name)->second
64 properties_.find(name)->second.IsTypeCompatible<int32_t>();
69 properties_.find(name)->second.IsTypeCompatible<int16_t>();
74 properties_.find(name)->second.IsTypeCompatible<KeyValueStore>();
79 properties_.find(name)->second.IsTypeCompatible<dbus::ObjectPath>();
84 properties_.find(name)->second
90 properties_.find(name)->second.IsTypeCompatible<string>();
95 properties_.find(name)->second.IsTypeCompatible<Stringmap>();
100 properties_.find(name)->second.IsTypeCompatible<Strings>();
105 properties_.find(name)->second.IsTypeCompatible<uint32_t>();
110 properties_.find(name)->second.IsTypeCompatible<uint8_t>();
115 properties_.find(name)->second.IsTypeCompatible<uint16_t>();
120 properties_.find(name)->second.IsTypeCompatible<vector<uint8_t>>();
125 properties_.find(name)->second.IsTypeCompatible<vector<uint32_t>>();
134 CHECK(it != properties_.end() && it->second.IsTypeCompatible<bool>())
136 return it->second.Get<bool>();
143 it->second.IsTypeCompatible<vector<vector<uint8_t>>>())
145 return it->second.Get<vector<vector<uint8_t>>>();
150 CHECK(it != properties_.end() && it->second.IsTypeCompatible<int32_t>())
152 return it->second.Get<int32_t>();
157 CHECK(it != properties_.end() && it->second.IsTypeCompatible<int16_t>())
159 return it->second.Get<int16_t>();
164 CHECK(it != properties_.end() && it->second.IsTypeCompatible<KeyValueStore>())
166 return it->second.Get<KeyValueStore>();
172 it->second.IsTypeCompatible<dbus::ObjectPath>())
174 return it->second.Get<dbus::ObjectPath>().value();
180 it->second.IsTypeCompatible<vector<dbus::ObjectPath>>())
184 it->second.Get<vector<dbus::ObjectPath>>(), &ids);
190 CHECK(it != properties_.end() && it->second.IsTypeCompatible<string>())
192 return it->second.Get<string>();
198 CHECK(it != properties_.end() && it->second.IsTypeCompatible<Stringmap>())
200 return it->second.Get<Stringmap>();
205 CHECK(it != properties_.end() && it->second.IsTypeCompatible<Strings>())
207 return it->second.Get<Strings>();
212 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint32_t>())
214 return it->second.Get<uint32_t>();
219 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint16_t>())
221 return it->second.Get<uint16_t>();
226 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint8_t>())
228 return it->second.Get<uint8_t>();
234 it->second.IsTypeCompatible<vector<uint8_t>>())
236 return it->second.Get<vector<uint8_t>>();
242 it->second.IsTypeCompatible<vector<uint32_t>>())
244 return it->second.Get<vector<uint32_t>>();
250 return it->second;
385 CHECK(it->second.IsTypeCompatible<bool>()) << "type mismatched";
386 return it->second.Get<bool>();
394 CHECK(it->second.IsTypeCompatible<int32_t>()) << "type mismatched";
395 return it->second.Get<int32_t>();
404 CHECK(it->second.IsTypeCompatible<string>()) << "type mismatched";
405 return it->second.Get<string>();
412 if (key_value_pair.second.IsTypeCompatible<KeyValueStore>()) {
417 key_value_pair.second.Get<KeyValueStore>(), &dict);
429 if (key_value_pair.second.IsTypeCompatible<brillo::VariantDictionary>()) {
434 key_value_pair.second.Get<brillo::VariantDictionary>(), &store);