Lines Matching refs:it

126     ReadablePropertyConstIterator<bool> it = GetBoolPropertiesIter();  in GetProperties()  local
127 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
128 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
132 ReadablePropertyConstIterator<int16_t> it = GetInt16PropertiesIter(); in GetProperties() local
133 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
134 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
138 ReadablePropertyConstIterator<int32_t> it = GetInt32PropertiesIter(); in GetProperties() local
139 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
140 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
144 ReadablePropertyConstIterator<RpcIdentifier> it = in GetProperties() local
146 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
148 std::make_pair(it.Key(), in GetProperties()
149 brillo::Any(dbus::ObjectPath(it.value())))); in GetProperties()
153 ReadablePropertyConstIterator<RpcIdentifiers> it = in GetProperties() local
155 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
157 for (const auto& path : it.value()) { in GetProperties()
161 std::make_pair(it.Key(), brillo::Any(rpc_identifiers_as_paths))); in GetProperties()
165 ReadablePropertyConstIterator<string> it = GetStringPropertiesIter(); in GetProperties() local
166 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
167 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
171 ReadablePropertyConstIterator<Stringmap> it = GetStringmapPropertiesIter(); in GetProperties() local
172 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
173 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
177 ReadablePropertyConstIterator<Stringmaps> it = in GetProperties() local
179 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
180 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
184 ReadablePropertyConstIterator<Strings> it = GetStringsPropertiesIter(); in GetProperties() local
185 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
186 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
190 ReadablePropertyConstIterator<uint8_t> it = GetUint8PropertiesIter(); in GetProperties() local
191 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
192 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
196 ReadablePropertyConstIterator<ByteArray> it = GetByteArrayPropertiesIter(); in GetProperties() local
197 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
198 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
202 ReadablePropertyConstIterator<uint16_t> it = GetUint16PropertiesIter(); in GetProperties() local
203 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
204 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
208 ReadablePropertyConstIterator<Uint16s> it = GetUint16sPropertiesIter(); in GetProperties() local
209 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
210 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
214 ReadablePropertyConstIterator<uint32_t> it = GetUint32PropertiesIter(); in GetProperties() local
215 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
216 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
220 ReadablePropertyConstIterator<uint64_t> it = GetUint64PropertiesIter(); in GetProperties() local
221 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
222 out->insert(std::make_pair(it.Key(), brillo::Any(it.value()))); in GetProperties()
226 ReadablePropertyConstIterator<KeyValueStore> it = in GetProperties() local
228 for ( ; !it.AtEnd(); it.Advance()) { in GetProperties()
230 KeyValueStore::ConvertToVariantDictionary(it.value(), &dict); in GetProperties()
231 out->insert(std::make_pair(it.Key(), dict)); in GetProperties()
905 it = collection.find(name); in GetProperty() local
906 if (it != collection.end()) { in GetProperty()
907 V val = it->second->Get(error); in GetProperty()