Lines Matching refs:it
133 const auto it(properties_.find(name)); in GetBool() local
134 CHECK(it != properties_.end() && it->second.IsTypeCompatible<bool>()) in GetBool()
136 return it->second.Get<bool>(); in GetBool()
141 const auto it(properties_.find(name)); in GetByteArrays() local
142 CHECK(it != properties_.end() && in GetByteArrays()
143 it->second.IsTypeCompatible<vector<vector<uint8_t>>>()) in GetByteArrays()
145 return it->second.Get<vector<vector<uint8_t>>>(); in GetByteArrays()
149 const auto it(properties_.find(name)); in GetInt() local
150 CHECK(it != properties_.end() && it->second.IsTypeCompatible<int32_t>()) in GetInt()
152 return it->second.Get<int32_t>(); in GetInt()
156 const auto it(properties_.find(name)); in GetInt16() local
157 CHECK(it != properties_.end() && it->second.IsTypeCompatible<int16_t>()) in GetInt16()
159 return it->second.Get<int16_t>(); in GetInt16()
163 const auto it(properties_.find(name)); in GetKeyValueStore() local
164 CHECK(it != properties_.end() && it->second.IsTypeCompatible<KeyValueStore>()) in GetKeyValueStore()
166 return it->second.Get<KeyValueStore>(); in GetKeyValueStore()
170 const auto it(properties_.find(name)); in GetRpcIdentifier() local
171 CHECK(it != properties_.end() && in GetRpcIdentifier()
172 it->second.IsTypeCompatible<dbus::ObjectPath>()) in GetRpcIdentifier()
174 return it->second.Get<dbus::ObjectPath>().value(); in GetRpcIdentifier()
178 const auto it(properties_.find(name)); in GetRpcIdentifiers() local
179 CHECK(it != properties_.end() && in GetRpcIdentifiers()
180 it->second.IsTypeCompatible<vector<dbus::ObjectPath>>()) in GetRpcIdentifiers()
184 it->second.Get<vector<dbus::ObjectPath>>(), &ids); in GetRpcIdentifiers()
189 const auto it(properties_.find(name)); in GetString() local
190 CHECK(it != properties_.end() && it->second.IsTypeCompatible<string>()) in GetString()
192 return it->second.Get<string>(); in GetString()
197 const auto it(properties_.find(name)); in GetStringmap() local
198 CHECK(it != properties_.end() && it->second.IsTypeCompatible<Stringmap>()) in GetStringmap()
200 return it->second.Get<Stringmap>(); in GetStringmap()
204 const auto it(properties_.find(name)); in GetStrings() local
205 CHECK(it != properties_.end() && it->second.IsTypeCompatible<Strings>()) in GetStrings()
207 return it->second.Get<Strings>(); in GetStrings()
211 const auto it(properties_.find(name)); in GetUint() local
212 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint32_t>()) in GetUint()
214 return it->second.Get<uint32_t>(); in GetUint()
218 const auto it(properties_.find(name)); in GetUint16() local
219 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint16_t>()) in GetUint16()
221 return it->second.Get<uint16_t>(); in GetUint16()
225 const auto it(properties_.find(name)); in GetUint8() local
226 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint8_t>()) in GetUint8()
228 return it->second.Get<uint8_t>(); in GetUint8()
232 const auto it(properties_.find(name)); in GetUint8s() local
233 CHECK(it != properties_.end() && in GetUint8s()
234 it->second.IsTypeCompatible<vector<uint8_t>>()) in GetUint8s()
236 return it->second.Get<vector<uint8_t>>(); in GetUint8s()
240 const auto it(properties_.find(name)); in GetUint32s() local
241 CHECK(it != properties_.end() && in GetUint32s()
242 it->second.IsTypeCompatible<vector<uint32_t>>()) in GetUint32s()
244 return it->second.Get<vector<uint32_t>>(); in GetUint32s()
248 const auto it(properties_.find(name)); in Get() local
249 CHECK(it != properties_.end()); in Get()
250 return it->second; in Get()
381 const auto it(properties_.find(name)); in LookupBool() local
382 if (it == properties_.end()) { in LookupBool()
385 CHECK(it->second.IsTypeCompatible<bool>()) << "type mismatched"; in LookupBool()
386 return it->second.Get<bool>(); in LookupBool()
390 const auto it(properties_.find(name)); in LookupInt() local
391 if (it == properties_.end()) { in LookupInt()
394 CHECK(it->second.IsTypeCompatible<int32_t>()) << "type mismatched"; in LookupInt()
395 return it->second.Get<int32_t>(); in LookupInt()
400 const auto it(properties_.find(name)); in LookupString() local
401 if (it == properties_.end()) { in LookupString()
404 CHECK(it->second.IsTypeCompatible<string>()) << "type mismatched"; in LookupString()
405 return it->second.Get<string>(); in LookupString()