bit 208 cib/callbacks.c long long bit = 0; bit 217 cib/callbacks.c bit = cib_notify_post; bit 220 cib/callbacks.c bit = cib_notify_pre; bit 223 cib/callbacks.c bit = cib_notify_confirm; bit 226 cib/callbacks.c bit = cib_notify_diff; bit 229 cib/callbacks.c bit = cib_notify_replace; bit 233 cib/callbacks.c set_bit(cib_client->options, bit); bit 235 cib/callbacks.c clear_bit(cib_client->options, bit); bit 144 include/crm/common/util.h is_not_set(long long word, long long bit) bit 146 include/crm/common/util.h return ((word & bit) == 0); bit 150 include/crm/common/util.h is_set(long long word, long long bit) bit 152 include/crm/common/util.h return ((word & bit) == bit); bit 156 include/crm/common/util.h is_set_any(long long word, long long bit) bit 158 include/crm/common/util.h return ((word & bit) != 0); bit 32 include/crm/pengine/internal.h # define pe_set_action_bit(action, bit) action->flags = crm_set_bit(__FUNCTION__, __LINE__, action->uuid, action->flags, bit) bit 33 include/crm/pengine/internal.h # define pe_clear_action_bit(action, bit) action->flags = crm_clear_bit(__FUNCTION__, __LINE__, action->uuid, action->flags, bit) bit 159 include/crm_internal.h crm_clear_bit(const char *function, int line, const char *target, long long word, long long bit) bit 161 include/crm_internal.h long long rc = (word & ~bit); bit 166 include/crm_internal.h crm_trace("Bit 0x%.8llx for %s cleared by %s:%d", bit, target, function, line); bit 168 include/crm_internal.h crm_trace("Bit 0x%.8llx cleared by %s:%d", bit, function, line); bit 175 include/crm_internal.h crm_set_bit(const char *function, int line, const char *target, long long word, long long bit) bit 177 include/crm_internal.h long long rc = (word | bit); bit 182 include/crm_internal.h crm_trace("Bit 0x%.8llx for %s set by %s:%d", bit, target, function, line); bit 184 include/crm_internal.h crm_trace("Bit 0x%.8llx set by %s:%d", bit, function, line); bit 190 include/crm_internal.h # define set_bit(word, bit) word = crm_set_bit(__FUNCTION__, __LINE__, NULL, word, bit) bit 191 include/crm_internal.h # define clear_bit(word, bit) word = crm_clear_bit(__FUNCTION__, __LINE__, NULL, word, bit)