Home
last modified time | relevance | path

Searched refs:SslSocketFactory (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/base/
Dsslsocketfactory.cc30 ProxySocketAdapter(SslSocketFactory* factory, int family, int type) in ProxySocketAdapter()
91 SslSocketFactory* factory_;
102 SslSocketFactory::SslSocketFactory(SocketFactory* factory, in SslSocketFactory() function in rtc::SslSocketFactory
113 SslSocketFactory::~SslSocketFactory() = default;
115 Socket* SslSocketFactory::CreateSocket(int type) { in CreateSocket()
119 Socket* SslSocketFactory::CreateSocket(int family, int type) { in CreateSocket()
123 AsyncSocket* SslSocketFactory::CreateAsyncSocket(int type) { in CreateAsyncSocket()
127 AsyncSocket* SslSocketFactory::CreateAsyncSocket(int family, int type) { in CreateAsyncSocket()
136 AsyncSocket* SslSocketFactory::CreateProxySocket(const ProxyInfo& proxy, in CreateProxySocket()
Dsslsocketfactory.h23 class SslSocketFactory : public SocketFactory {
25 SslSocketFactory(SocketFactory* factory, const std::string& user_agent);
26 ~SslSocketFactory() override;
Dhttprequest.cc71 SslSocketFactory factory(ss, client_.agent()); in Send()