Home
last modified time | relevance | path

Searched refs:GetSocketPath (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/communication/netstack/frameworks/js/napi/socket/async_context/include/
H A Dlocal_socket_context.h68 const std::string &GetSocketPath() const;
79 std::string GetSocketPath();
89 const std::string &GetSocketPath() const;
H A Dlocal_socket_server_context.h233 const std::string &GetSocketPath() const;
263 std::string GetSocketPath();
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/socket/async_context/src/
H A Dlocal_socket_context.cpp146 const std::string &LocalSocketBindContext::GetSocketPath() const in GetSocketPath() function in OHOS::NetStack::Socket::LocalSocketBindContext
174 const std::string &LocalSocketConnectContext::GetSocketPath() const in GetSocketPath() function in OHOS::NetStack::Socket::LocalSocketConnectContext
340 std::string LocalSocketGetLocalAddressContext::GetSocketPath() in GetSocketPath() function in OHOS::NetStack::Socket::LocalSocketGetLocalAddressContext
H A Dlocal_socket_server_context.cpp60 const std::string &LocalSocketServerListenContext::GetSocketPath() const in GetSocketPath() function in OHOS::NetStack::Socket::LocalSocketServerListenContext
253 std::string LocalSocketServerGetLocalAddressContext::GetSocketPath() in GetSocketPath() function in OHOS::NetStack::Socket::LocalSocketServerGetLocalAddressContext
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/socket/socket_exec/src/
H A Dlocal_socket_exec.cpp768 if (strcpy_s(addr.sun_path, sizeof(addr.sun_path) - 1, context->GetSocketPath().c_str()) != 0) { in ExecLocalSocketBind()
817 if (strcpy_s(addr.sun_path, sizeof(addr.sun_path) - 1, context->GetSocketPath().c_str()) != 0) { in ExecLocalSocketConnect()
832 GetSocketPath())); in ExecLocalSocketConnect()
974 unlink(context->GetSocketPath().c_str()); in LocalSocketServerBind()
977 …if (int err = strcpy_s(addr.sun_path, sizeof(addr.sun_path) - 1, context->GetSocketPath().c_str())… in LocalSocketServerBind()
1013 … context->GetSocketPath()); in ExecLocalSocketServerListen()
1017 … context->GetSocketPath())); in ExecLocalSocketServerListen()
1264 auto path = context->GetSocketPath(); in LocalSocketGetLocalAddressCallback()
1327 auto path = context->GetSocketPath(); in LocalSocketServerGetLocalAddressCallback()
1372 auto path = context->GetSocketPath(); in LocalSocketConnectionGetLocalAddressCallback()