Home
last modified time | relevance | path

Searched refs:default_authority (Results 1 – 9 of 9) sorted by relevance

/external/grpc-grpc/src/core/ext/transport/chttp2/client/
Dauthority.cc29 grpc_core::UniquePtr<char> default_authority; in grpc_default_authority_add_if_not_present() local
35 default_authority = in grpc_default_authority_add_if_not_present()
37 GPR_ASSERT(default_authority != nullptr); in grpc_default_authority_add_if_not_present()
39 const_cast<char*>(GRPC_ARG_DEFAULT_AUTHORITY), default_authority.get()); in grpc_default_authority_add_if_not_present()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/client/
Dauthority.cc29 std::string default_authority; in grpc_default_authority_add_if_not_present() local
35 default_authority = in grpc_default_authority_add_if_not_present()
39 const_cast<char*>(default_authority.c_str())); in grpc_default_authority_add_if_not_present()
/external/grpc-grpc/src/core/ext/filters/http/
Dclient_authority_filter.cc47 grpc_slice default_authority; member
64 grpc_slice_ref_internal(chand->default_authority))); in authority_start_transport_stream_op_batch()
105 chand->default_authority = in init_channel_elem()
114 grpc_slice_unref_internal(chand->default_authority); in destroy_channel_elem()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/http/
Dclient_authority_filter.cc47 grpc_core::ManagedMemorySlice default_authority; member
104 chand->default_authority = in client_authority_init_channel_elem()
107 GRPC_MDSTR_AUTHORITY, chand->default_authority, nullptr); in client_authority_init_channel_elem()
115 grpc_slice_unref_internal(chand->default_authority); in client_authority_destroy_channel_elem()
/external/grpc-grpc/src/core/lib/surface/
Dchannel.cc184 grpc_core::UniquePtr<char> default_authority; in get_default_authority() local
195 default_authority.reset(gpr_strdup(ssl_override)); in get_default_authority()
197 return default_authority; in get_default_authority()
201 const grpc_channel_args* input_args, char* default_authority) { in build_channel_args() argument
204 if (default_authority != nullptr) { in build_channel_args()
206 const_cast<char*>(GRPC_ARG_DEFAULT_AUTHORITY), default_authority); in build_channel_args()
221 const grpc_core::UniquePtr<char> default_authority = in grpc_channel_create() local
224 build_channel_args(input_args, default_authority.get()); in grpc_channel_create()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/surface/
Dchannel.cc143 grpc_core::UniquePtr<char> default_authority; in get_default_authority() local
154 default_authority.reset(gpr_strdup(ssl_override)); in get_default_authority()
156 return default_authority; in get_default_authority()
160 const grpc_channel_args* input_args, char* default_authority) { in build_channel_args() argument
163 if (default_authority != nullptr) { in build_channel_args()
165 const_cast<char*>(GRPC_ARG_DEFAULT_AUTHORITY), default_authority); in build_channel_args()
247 const grpc_core::UniquePtr<char> default_authority = in grpc_channel_create() local
250 build_channel_args(input_args, default_authority.get()); in grpc_channel_create()
/external/grpc-grpc/test/core/end2end/fuzzers/
Dapi_fuzzer.dictionary22 "\x01grpc.default_authority\x00"
/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Drecords.pyx.pxi51 default_authority = GRPC_ARG_DEFAULT_AUTHORITY variable in ChannelArgKey
/external/rust/crates/grpcio/src/
Dchannel.rs88 pub fn default_authority<S: Into<Vec<u8>>>(mut self, authority: S) -> ChannelBuilder { in default_authority() method