Home
last modified time | relevance | path

Searched refs:SSLSocket (Results 1 – 11 of 11) sorted by relevance

/device/google/cuttlefish/host/frontend/gcastv2/https/
DSSLSocket.cpp26 void SSLSocket::Init() { in Init()
32 SSL_CTX *SSLSocket::CreateSSLContext() { in CreateSSLContext()
42 SSLSocket::SSLSocket( in SSLSocket() function in SSLSocket
65 bool SSLSocket::useCertificate(const std::string &path) { in useCertificate()
70 bool SSLSocket::usePrivateKey(const std::string &path) { in usePrivateKey()
76 bool SSLSocket::useTrustedCertificates(const std::string &path) { in useTrustedCertificates()
83 SSLSocket::SSLSocket( in SSLSocket() function in SSLSocket
89 : SSLSocket(rl, Mode::ACCEPT, sock, flags) { in SSLSocket()
98 SSLSocket::SSLSocket( in SSLSocket() function in SSLSocket
103 : SSLSocket(rl, Mode::CONNECT, sock, flags) { in SSLSocket()
[all …]
DAndroid.bp27 "SSLSocket.cpp",
DClientSocket.cpp42 mImplSSL = std::make_shared<SSLSocket>( in ClientSocket()
DHTTPClientConnection.cpp63 mImpl = std::make_shared<SSLSocket>( in HTTPClientConnection()
/device/google/cuttlefish/host/frontend/gcastv2/https/include/https/
DSSLSocket.h26 struct SSLSocket struct
28 public std::enable_shared_from_this<SSLSocket> {
36 explicit SSLSocket( argument
43 explicit SSLSocket(
49 ~SSLSocket() override;
51 SSLSocket(const SSLSocket &) = delete;
52 SSLSocket &operator=(const SSLSocket &) = delete; argument
101 explicit SSLSocket( argument
DClientSocket.h61 std::shared_ptr<SSLSocket> mImplSSL;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_ftplib.py349 if (isinstance(self.socket, ssl.SSLSocket) and
619 self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
621 self.assertIsInstance(self.client.sock, ssl.SSLSocket)
626 self.assertNotIsInstance(sock, ssl.SSLSocket)
633 self.assertIsInstance(sock, ssl.SSLSocket)
640 self.assertNotIsInstance(sock, ssl.SSLSocket)
646 self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
648 self.assertIsInstance(self.client.sock, ssl.SSLSocket)
Dtest_ssl.py438 if isinstance(self.sock, ssl.SSLSocket):
560 if isinstance(self.socket, ssl.SSLSocket):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dssl.py94 class SSLSocket(socket): class
336 return (SSLSocket(newsock,
367 return SSLSocket(sock, keyfile=keyfile, certfile=certfile,
Dftplib.py632 if secure and not isinstance(self.sock, ssl.SSLSocket):
638 if isinstance(self.sock, ssl.SSLSocket):
690 if isinstance(conn, ssl.SSLSocket):
713 if isinstance(conn, ssl.SSLSocket):
730 if isinstance(conn, ssl.SSLSocket):
749 if isinstance(conn, ssl.SSLSocket):
/device/google/cuttlefish/host/frontend/gcastv2/webrtc/
DwebRTC.cpp71 SSLSocket::Init(); in main()