Home
last modified time | relevance | path

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

/external/grpc-grpc/src/cpp/client/
Dchannel_cc.cc120 grpc_slice host_slice; in CreateCall() local
122 host_slice = SliceFromCopiedString(host_str); in CreateCall()
127 host_str == nullptr ? nullptr : &host_slice, context->raw_deadline(), in CreateCall()
131 grpc_slice_unref(host_slice); in CreateCall()
/external/grpc-grpc/src/objective-c/GRPCClient/private/
DGRPCChannel.m204 grpc_slice host_slice = grpc_empty_slice();
206 host_slice = grpc_slice_from_copied_string(serverName.UTF8String);
215 serverName ? &host_slice : NULL, deadline_ms, NULL);
217 grpc_slice_unref(host_slice);
/external/grpc-grpc/src/ruby/ext/grpc/
Drb_channel.c416 grpc_slice host_slice; in grpc_rb_channel_create_call() local
422 host_slice = in grpc_rb_channel_create_call()
424 host_slice_ptr = &host_slice; in grpc_rb_channel_create_call()
456 grpc_slice_unref(host_slice); in grpc_rb_channel_create_call()
/external/grpc-grpc/src/php/ext/grpc/
Dcall.c232 grpc_slice host_slice = host_override != NULL ? in PHP_METHOD() local
238 host_override != NULL ? &host_slice : NULL, in PHP_METHOD()
241 grpc_slice_unref(host_slice); in PHP_METHOD()
/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Dchannel.pyx.pxi190 cdef grpc_slice host_slice
202 host_slice = _slice_from_bytes(host)
203 host_slice_ptr = &host_slice
210 grpc_slice_unref(host_slice)
/external/grpc-grpc/src/csharp/ext/
Dgrpc_csharp_ext.c403 grpc_slice host_slice; in grpcsharp_channel_create_call() local
405 host_slice = grpc_slice_from_copied_string(host); in grpcsharp_channel_create_call()
406 host_slice_ptr = &host_slice; in grpcsharp_channel_create_call()
413 grpc_slice_unref(host_slice); in grpcsharp_channel_create_call()