Searched refs:gpr_memrchr (Results 1 – 5 of 5) sorted by relevance
/external/grpc-grpc/test/core/gpr/ |
D | string_test.cc | 274 GPR_ASSERT(nullptr == gpr_memrchr(nullptr, 'a', 0)); in test_memrchr() 275 GPR_ASSERT(nullptr == gpr_memrchr("", 'a', 0)); in test_memrchr() 276 GPR_ASSERT(nullptr == gpr_memrchr("hello", 'b', 5)); in test_memrchr() 277 GPR_ASSERT(0 == strcmp((const char*)gpr_memrchr("hello", 'h', 5), "hello")); in test_memrchr() 278 GPR_ASSERT(0 == strcmp((const char*)gpr_memrchr("hello", 'o', 5), "o")); in test_memrchr() 279 GPR_ASSERT(0 == strcmp((const char*)gpr_memrchr("hello", 'l', 5), "lo")); in test_memrchr()
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | string.h | 114 void* gpr_memrchr(const void* s, int c, size_t n);
|
D | string.cc | 323 void* gpr_memrchr(const void* s, int c, size_t n) { in gpr_memrchr() function
|
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | parse_address.cc | 125 char* host_end = static_cast<char*>(gpr_memrchr(host, '%', strlen(host))); in grpc_parse_ipv6_hostport()
|
/external/grpc-grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_verifier.cc | 763 dot = static_cast<const char*>(gpr_memrchr( in grpc_jwt_issuer_email_domain()
|