Searched refs:SSLSocket (Results 1 – 11 of 11) sorted by relevance
/device/google/cuttlefish/host/frontend/gcastv2/https/ |
D | SSLSocket.cpp | 26 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 …]
|
D | Android.bp | 27 "SSLSocket.cpp",
|
D | ClientSocket.cpp | 42 mImplSSL = std::make_shared<SSLSocket>( in ClientSocket()
|
D | HTTPClientConnection.cpp | 63 mImpl = std::make_shared<SSLSocket>( in HTTPClientConnection()
|
/device/google/cuttlefish/host/frontend/gcastv2/https/include/https/ |
D | SSLSocket.h | 26 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
|
D | ClientSocket.h | 61 std::shared_ptr<SSLSocket> mImplSSL;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_ftplib.py | 349 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)
|
D | test_ssl.py | 438 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/ |
D | ssl.py | 94 class SSLSocket(socket): class 336 return (SSLSocket(newsock, 367 return SSLSocket(sock, keyfile=keyfile, certfile=certfile,
|
D | ftplib.py | 632 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/ |
D | webRTC.cpp | 71 SSLSocket::Init(); in main()
|