word               39 include/crm/common/strings_internal.h void pcmk__add_separated_word(char **list, size_t *len, const char *word,
word              137 include/crm/common/strings_internal.h pcmk__add_word(char **list, size_t *len, const char *word)
word              139 include/crm/common/strings_internal.h     return pcmk__add_separated_word(list, len, word, " ");
word               31 include/crm/common/util_compat.h is_not_set(long long word, long long bit)
word               33 include/crm/common/util_compat.h     return ((word & bit) == 0);
word               38 include/crm/common/util_compat.h is_set(long long word, long long bit)
word               40 include/crm/common/util_compat.h     return ((word & bit) == bit);
word               45 include/crm/common/util_compat.h is_set_any(long long word, long long bit)
word               47 include/crm/common/util_compat.h     return ((word & bit) != 0);
word              702 lib/common/strings.c pcmk__add_separated_word(char **list, size_t *len, const char *word,
word              709 lib/common/strings.c     if (pcmk__str_empty(word)) {
word              725 lib/common/strings.c     new_len = orig_len + strlen(separator) + strlen(word);
word              732 lib/common/strings.c     sprintf(*list + orig_len, "%s%s", separator, word);
word               47 lib/pengine/group.c         char *word = crm_strdup_printf("%d member%s inactive", n_inactive, pcmk__plural_s(n_inactive));
word               48 lib/pengine/group.c         pcmk__add_separated_word(&attrs, &len, word, ", ");
word               49 lib/pengine/group.c         free(word);
word              297 tools/crm_ticket.c     const char *word = NULL;
word              304 tools/crm_ticket.c         word = "to";
word              318 tools/crm_ticket.c         word = "from";
word              323 tools/crm_ticket.c                        action, ticket_id, word);