pcmk__validate_health_strategy   32 include/crm/common/health_internal.h bool pcmk__validate_health_strategy(const char *value);
pcmk__validate_health_strategy   18 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("none"));
pcmk__validate_health_strategy   19 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("None"));
pcmk__validate_health_strategy   20 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("NONE"));
pcmk__validate_health_strategy   21 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("NoNe"));
pcmk__validate_health_strategy   22 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("migrate-on-red"));
pcmk__validate_health_strategy   23 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("only-green"));
pcmk__validate_health_strategy   24 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("progressive"));
pcmk__validate_health_strategy   25 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_true(pcmk__validate_health_strategy("custom"));
pcmk__validate_health_strategy   30 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_false(pcmk__validate_health_strategy(NULL));
pcmk__validate_health_strategy   31 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_false(pcmk__validate_health_strategy(""));
pcmk__validate_health_strategy   32 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_false(pcmk__validate_health_strategy("none to speak of"));
pcmk__validate_health_strategy   33 lib/common/tests/health/pcmk__validate_health_strategy_test.c     assert_false(pcmk__validate_health_strategy("customized"));
pcmk__validate_health_strategy  242 lib/pengine/common.c         PCMK__VALUE_NONE, pcmk__validate_health_strategy,