Home
last modified time | relevance | path

Searched refs:gpr_strjoin_sep (Results 1 – 5 of 5) sorted by relevance

/third_party/grpc/test/core/gpr/
Dstring_test.cc161 joined = gpr_strjoin_sep(parts, 4, ", ", &joined_len); in test_strjoin_sep()
166 joined = gpr_strjoin_sep(parts, 4, "", &joined_len); in test_strjoin_sep()
171 joined = gpr_strjoin_sep(parts, 0, ", ", &joined_len); in test_strjoin_sep()
176 joined = gpr_strjoin_sep(parts, 1, ", ", &joined_len); in test_strjoin_sep()
/third_party/grpc/src/core/lib/gpr/
Dstring.h86 char* gpr_strjoin_sep(const char** strs, size_t nstrs, const char* sep,
Dstring.cc236 return gpr_strjoin_sep(strs, nstrs, "", final_length); in gpr_strjoin()
239 char* gpr_strjoin_sep(const char** strs, size_t nstrs, const char* sep, in gpr_strjoin_sep() function
/third_party/grpc/test/core/util/
Dsubprocess_windows.cc47 char* args = gpr_strjoin_sep(argv, (size_t)argc, " ", NULL); in gpr_subprocess_create()
/third_party/grpc/test/cpp/interop/
Dhttp2_client.cc221 gpr_strjoin_sep(testcases, GPR_ARRAY_SIZE(testcases), "\n", nullptr); in main()