Lines Matching defs:it
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
16 * This program is distributed in the hope that it will be useful,
93 LibHalPropertySetIterator it;
111 for (libhal_psi_init (&it, props); libhal_psi_has_more (&it); libhal_psi_next (&it)) {
112 type = libhal_psi_get_type (&it);
116 libhal_psi_get_key (&it),
117 libhal_psi_get_string (&it));
122 libhal_psi_get_key (&it),
123 libhal_psi_get_int (&it),
124 libhal_psi_get_int (&it));
129 libhal_psi_get_key (&it),
130 (long long unsigned int) libhal_psi_get_uint64 (&it),
131 (long long unsigned int) libhal_psi_get_uint64 (&it));
136 libhal_psi_get_key (&it),
137 libhal_psi_get_double (&it));
142 libhal_psi_get_key (&it),
143 libhal_psi_get_bool (&it) ? "true" :
152 printf (" %s = {", libhal_psi_get_key (&it));
154 strlist = libhal_psi_get_strlist (&it);