Home
last modified time | relevance | path

Searched refs:c_creds_ (Results 1 – 2 of 2) sorted by relevance

/third_party/grpc/src/cpp/client/
Dsecure_credentials.h41 if (c_creds_ != nullptr) c_creds_->Unref(); in ~SecureChannelCredentials()
43 grpc_channel_credentials* GetRawCreds() { return c_creds_; } in GetRawCreds()
56 grpc_channel_credentials* const c_creds_; variable
63 if (c_creds_ != nullptr) c_creds_->Unref(); in ~SecureCallCredentials()
65 grpc_call_credentials* GetRawCreds() { return c_creds_; } in GetRawCreds()
71 std::string(c_creds_->debug_string()), "}"); in DebugString()
75 grpc_call_credentials* const c_creds_;
Dsecure_credentials.cc49 : c_creds_(c_creds) { in SecureChannelCredentials()
71 grpc_secure_channel_create(c_creds_, target.c_str(), &channel_args, in CreateChannelWithInterceptors()
77 : c_creds_(c_creds) { in SecureCallCredentials()
82 return grpc_call_set_credentials(call, c_creds_) == GRPC_CALL_OK; in ApplyToCall()