Home
last modified time | relevance | path

Searched refs:gpr_is_true (Results 1 – 6 of 6) sorted by relevance

/external/grpc-grpc/test/core/gpr/
Dstring_test.cc285 GPR_ASSERT(true == gpr_is_true("True")); in test_is_true()
286 GPR_ASSERT(true == gpr_is_true("true")); in test_is_true()
287 GPR_ASSERT(true == gpr_is_true("TRUE")); in test_is_true()
288 GPR_ASSERT(true == gpr_is_true("Yes")); in test_is_true()
289 GPR_ASSERT(true == gpr_is_true("yes")); in test_is_true()
290 GPR_ASSERT(true == gpr_is_true("YES")); in test_is_true()
291 GPR_ASSERT(true == gpr_is_true("1")); in test_is_true()
292 GPR_ASSERT(false == gpr_is_true(nullptr)); in test_is_true()
293 GPR_ASSERT(false == gpr_is_true("")); in test_is_true()
294 GPR_ASSERT(false == gpr_is_true("0")); in test_is_true()
/external/grpc-grpc/src/core/lib/gpr/
Dstring.h117 bool gpr_is_true(const char* s);
Dstring.cc335 bool gpr_is_true(const char* s) { in gpr_is_true() function
/external/grpc-grpc/src/core/lib/iomgr/
Diomgr.cc177 bool should_we = gpr_is_true(env); in grpc_iomgr_abort_on_leaks()
/external/grpc-grpc/test/cpp/naming/
Dresolver_component_test.cc134 gpr_is_true(expected_addrs.substr(0, next_semicolon).c_str()); in ParseExpectedAddrs()
/external/grpc-grpc/src/core/lib/security/security_connector/
Dsecurity_connector.cc1197 const bool not_use_system_roots = gpr_is_true(not_use_system_roots_env_value);