Home
last modified time | relevance | path

Searched refs:host_port_buf_size (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/examples/android/helloworld/app/src/main/cpp/
Dgrpc-helloworld.cc50 const int host_port_buf_size = 1024; in StartServer() local
51 char host_port[host_port_buf_size]; in StartServer()
52 snprintf(host_port, host_port_buf_size, "0.0.0.0:%d", port); in StartServer()
118 const int host_port_buf_size = 1024; in Java_io_grpc_helloworldexample_cpp_HelloworldActivity_sayHello() local
119 char host_port[host_port_buf_size]; in Java_io_grpc_helloworldexample_cpp_HelloworldActivity_sayHello()
120 snprintf(host_port, host_port_buf_size, "%s:%d", host.c_str(), port); in Java_io_grpc_helloworldexample_cpp_HelloworldActivity_sayHello()
/external/grpc-grpc/test/cpp/interop/
Dclient_helper.cc84 const int host_port_buf_size = 1024; in CreateChannelForTestCase() local
85 char host_port[host_port_buf_size]; in CreateChannelForTestCase()
86 snprintf(host_port, host_port_buf_size, "%s:%d", FLAGS_server_host.c_str(), in CreateChannelForTestCase()
Dhttp2_client.cc193 const int host_port_buf_size = 1024; in main() local
194 char host_port[host_port_buf_size]; in main()
195 snprintf(host_port, host_port_buf_size, "%s:%d", FLAGS_server_host.c_str(), in main()
/external/grpc-grpc/src/android/test/interop/app/src/main/cpp/
Dgrpc-interop.cc37 const int host_port_buf_size = 1024; in GetClient() local
38 char host_port[host_port_buf_size]; in GetClient()
39 snprintf(host_port, host_port_buf_size, "%s:%d", host, port); in GetClient()