Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/netstack/frameworks/js/napi/socket/async_context/include/
H A Dlocal_socket_context.h29 struct SocketBaseManager { struct
30 explicit SocketBaseManager(int sockfd) : sockfd_(sockfd) {} in SocketBaseManager() function
34 struct LocalSocketManager : public SocketBaseManager { argument
35 explicit LocalSocketManager(int sockfd) : SocketBaseManager(sockfd) {} in LocalSocketManager()
H A Dlocal_socket_server_context.h37 struct LocalSocketServerManager : public SocketBaseManager {
58 explicit LocalSocketServerManager(int sockfd) : SocketBaseManager(sockfd) {} in LocalSocketServerManager()
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/socket/socket_module/src/
H A Dsocket_module.cpp322 …ol SetSocketManager(napi_env env, napi_value thisVal, BaseContext *context, SocketBaseManager *mgr) in SetSocketManager()