Home
last modified time | relevance | path

Searched refs:private_key_pem_path (Results 1 – 7 of 7) sorted by relevance

/device/google/cuttlefish/host/frontend/gcastv2/https/include/https/
DServerSocket.h41 const std::optional<std::string> &private_key_pem_path);
57 std::optional<std::string> private_key_pem_path() const;
DHTTPServer.h41 const std::optional<std::string> &private_key_pem_path =
73 std::optional<std::string> private_key_pem_path() const;
DSSLSocket.h40 const std::string &private_key_pem_path,
/device/google/cuttlefish/host/frontend/gcastv2/https/
DServerSocket.cpp39 const std::optional<std::string> &private_key_pem_path) in ServerSocket() argument
43 mPrivateKeyPath(private_key_pem_path), in ServerSocket()
179 std::optional<std::string> ServerSocket::private_key_pem_path() const { in private_key_pem_path() function in ServerSocket
DHTTPServer.cpp44 const std::optional<std::string> &private_key_pem_path) in HTTPServer() argument
54 private_key_pem_path)) { in HTTPServer()
390 std::optional<std::string> HTTPServer::private_key_pem_path() const { in private_key_pem_path() function in HTTPServer
391 return mSocketTLS->private_key_pem_path(); in private_key_pem_path()
DSSLSocket.cpp87 const std::string &private_key_pem_path, in SSLSocket() argument
95 && usePrivateKey(private_key_pem_path)); in SSLSocket()
DClientSocket.cpp46 *server->private_key_pem_path()); in ClientSocket()