Lines Matching defs:it
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
18 * This program is distributed in the hope that it will be useful,
226 LibHalPropertySetIterator it;
239 for(libhal_psi_init(&it, props); libhal_psi_has_more(&it); libhal_psi_next(&it)) {
240 type = libhal_psi_get_type(&it);
244 libhal_psi_get_key(&it),
245 libhal_psi_get_string(&it)
250 libhal_psi_get_key(&it),
251 libhal_psi_get_int(&it),
252 libhal_psi_get_int(&it)
257 libhal_psi_get_key(&it),
258 (long long) libhal_psi_get_uint64(&it),
259 (long long) libhal_psi_get_uint64(&it)
264 libhal_psi_get_key(&it),
265 libhal_psi_get_double(&it)
270 libhal_psi_get_key(&it),
271 libhal_psi_get_bool(&it) ? "true" : "false"
278 printf (" %s = { ", libhal_psi_get_key(&it));
279 strlist = libhal_psi_get_strlist(&it);