Lines Matching refs:it

12  * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
17 * This program is distributed in the hope that it will be useful,
105 /* see if it already exist */
639 /* skip if hal says it's not used as a filesystem */
667 /* only the real lucky mount points will make it this far :-) */
879 #define LIBHAL_PROP_EXTRACT_INT(_property_, _where_) else if (strcmp (key, _property_) == 0 && type == LIBHAL_PROPERTY_TYPE_INT32) _where_ = libhal_psi_get_int (&it)
880 #define LIBHAL_PROP_EXTRACT_UINT64(_property_, _where_) else if (strcmp (key, _property_) == 0 && type == LIBHAL_PROPERTY_TYPE_UINT64) _where_ = libhal_psi_get_uint64 (&it)
881 #define LIBHAL_PROP_EXTRACT_STRING(_property_, _where_) else if (strcmp (key, _property_) == 0 && type == LIBHAL_PROPERTY_TYPE_STRING) _where_ = (libhal_psi_get_string (&it) != NULL && strlen (libhal_psi_get_string (&it)) > 0) ? strdup (libhal_psi_get_string (&it)) : NULL
882 #define LIBHAL_PROP_EXTRACT_BOOL(_property_, _where_) else if (strcmp (key, _property_) == 0 && type == LIBHAL_PROPERTY_TYPE_BOOLEAN) _where_ = libhal_psi_get_bool (&it)
883 #define LIBHAL_PROP_EXTRACT_BOOL_BITFIELD(_property_, _where_, _field_) else if (strcmp (key, _property_) == 0 && type == LIBHAL_PROPERTY_TYPE_BOOLEAN) _where_ |= libhal_psi_get_bool (&it) ? _field_ : 0
884 #define LIBHAL_PROP_EXTRACT_STRLIST(_property_, _where_) else if (strcmp (key, _property_) == 0 && type == LIBHAL_PROPERTY_TYPE_STRLIST) _where_ = my_strvdup (libhal_psi_get_strlist (&it))
900 LibHalPropertySetIterator it;
930 for (libhal_psi_init (&it, properties); libhal_psi_has_more (&it); libhal_psi_next (&it)) {
934 type = libhal_psi_get_type (&it);
935 key = libhal_psi_get_key (&it);
1095 LibHalPropertySetIterator it;
1121 for (libhal_psi_init (&it, properties); libhal_psi_has_more (&it); libhal_psi_next (&it)) {
1125 type = libhal_psi_get_type (&it);
1126 key = libhal_psi_get_key (&it);
1300 * @return LibHalDrive object or NULL if it doesn't exist
1363 * @return LibHalVolume object or NULL if it doesn't exist
1882 LibHalPropertySetIterator it;
1899 for (libhal_psi_init (&it, properties); libhal_psi_has_more (&it); libhal_psi_next (&it)) {
1903 type = libhal_psi_get_type (&it);
1904 key = libhal_psi_get_key (&it);
1905 if (libhal_psi_get_type (&it) == LIBHAL_PROPERTY_TYPE_BOOLEAN &&
1927 if (libhal_psi_get_bool (&it)) {