Searched refs:COND_RESULT_TRUE (Results 1 – 2 of 2) sorted by relevance
381 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_TRUE : COND_RESULT_FALSE; in config_check_cond_nocache()383 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_FALSE : COND_RESULT_TRUE; in config_check_cond_nocache()474 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_TRUE : COND_RESULT_FALSE; in config_check_cond_nocache()476 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_FALSE : COND_RESULT_TRUE; in config_check_cond_nocache()495 return (dc->cond == CONFIG_COND_MATCH) ? COND_RESULT_TRUE : COND_RESULT_FALSE; in config_check_cond_nocache()498 return (dc->cond == CONFIG_COND_MATCH) ? COND_RESULT_FALSE : COND_RESULT_TRUE; in config_check_cond_nocache()515 …if (COND_RESULT_TRUE == (caches[dc->context_ndx].result = config_check_cond_nocache(srv, con, dc))… in config_check_cond_cached()533 (caches[dc->context_ndx].result == COND_RESULT_TRUE ? "true" : "false")); in config_check_cond_cached()540 (caches[dc->context_ndx].result == COND_RESULT_TRUE ? "true" : "false")); in config_check_cond_cached()581 return (config_check_cond_cached(srv, con, dc) == COND_RESULT_TRUE); in config_check_cond()
349 typedef enum { COND_RESULT_UNSET, COND_RESULT_FALSE, COND_RESULT_TRUE } cond_result_t; enumerator