Lines Matching defs:group
1752 * \brief Get the UMP group filter status
1754 * \param group 0-based group index
1755 * \return 0 if the group is filtered / disabled, 1 if it's processed
1760 int group)
1763 return !(info->group_filter & (1U << group));
1853 * \brief Set the UMP group filter status
1855 * \param group 0-based group index
1856 * \param enable 0 to filter/disable the group, non-zero to enable
1861 int group, int enable)
1865 info->group_filter &= ~(1U << group);
1867 info->group_filter |= (1U << group);