Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/adapter/unittest/
H A Dsoftbus_socket_test.cpp80 int32_t backLog = 2; in SocketServiceStart() local
93 ret = SoftBusSocketListen(socketFd, backLog); in SocketServiceStart()
136 int32_t backLog = 2; in SocketIpv6ServiceStart() local
154 ret = SoftBusSocketListen(socketFd, backLog); in SocketIpv6ServiceStart()
883 int32_t backLog = 2; variable
893 ret = SoftBusSocketListen(socketFd, backLog);
909 int32_t backLog = -1; variable
919 ret = SoftBusSocketListen(socketFd, backLog);
935 int32_t backLog = 2; variable
950 int32_t backLog = 2; variable
[all …]
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H A Dsocket_app.c825 static struct FtSocket *SockApiGetAndCheckListenState(FILLP_INT sockIndex, FILLP_INT backLog, Fillp… in SockApiGetAndCheckListenState() argument
830 if (backLog < 0) { in SockApiGetAndCheckListenState()
831 FILLP_LOGERR("Backlog is invalid fillp_sock_id:%d,backLog:%d", sockIndex, backLog); in SockApiGetAndCheckListenState()
866 FillpErrorType SockListen(FILLP_INT sockIndex, FILLP_INT backLog) in SockListen() argument
872 FILLP_LOGINF("SockListen, fillp_sock_id:%d, backLog:%d", sockIndex, backLog); in SockListen()
874 sock = SockApiGetAndCheckListenState(sockIndex, backLog, &err); in SockListen()
881 sockIndex, backLog)); in SockListen()
883 if ((backLog == 0) || (backLog > (FILLP_INT)g_spunge->resConf.maxConnNum)) { in SockListen()
886 backLog, g_spunge->resConf.maxConnNum, sock->index); in SockListen()
888 backLog = (FILLP_INT)g_spunge->resConf.maxConnNum; in SockListen()
[all …]
H A Dapi.c244 FILLP_INT DLL_API FtListen(FILLP_INT fd, FILLP_INT backLog) in FtListen() argument
247 return SockListen(fd, backLog); in FtListen()
253 FILLP_UNUSED_PARA(backLog); in FtListen()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/include/
H A Dsocket_app.h50 FillpErrorType SockListen(FILLP_INT sockIndex, FILLP_INT backLog);
/ohos5.0/foundation/communication/dsoftbus/adapter/common/kernel/posix/
H A Dsoftbus_adapter_socket.c195 int32_t SoftBusSocketListen(int32_t socketFd, int32_t backLog) in SoftBusSocketListen() argument
197 int32_t ret = listen(socketFd, backLog); in SoftBusSocketListen()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_adapter_socket.h146 int32_t SoftBusSocketListen(int32_t socketFd, int32_t backLog);
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H A Dfillpinc.h265 extern FILLP_INT DLL_API FtListen(FILLP_INT fd, FILLP_INT backLog);