Home
last modified time | relevance | path

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

/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; in HWTEST_F() local
893 ret = SoftBusSocketListen(socketFd, backLog); in HWTEST_F()
909 int32_t backLog = -1; in HWTEST_F() local
919 ret = SoftBusSocketListen(socketFd, backLog); in HWTEST_F()
935 int32_t backLog = 2; in HWTEST_F() local
937 int32_t ret = SoftBusSocketListen(socketFd, backLog); in HWTEST_F()
950 int32_t backLog = 2; HWTEST_F() local
1020 int32_t backLog = 2; HWTEST_F() local
[all...]
/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, FillpErrorType *err) 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 in SockListen()
[all...]
H A Dapi.c241 * backLog: defines the maximum length to which the queue of pending connections for fd, may grow
244 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()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/include/
H A Dsocket_app.h50 FillpErrorType SockListen(FILLP_INT sockIndex, FILLP_INT backLog);
/foundation/communication/dsoftbus/adapter/common/kernel/posix/
H A Dsoftbus_adapter_socket.c197 int32_t SoftBusSocketListen(int32_t socketFd, int32_t backLog) in SoftBusSocketListen() argument
199 int32_t ret = listen(socketFd, backLog); in SoftBusSocketListen()
/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_adapter_socket.h146 int32_t SoftBusSocketListen(int32_t socketFd, int32_t backLog);
/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H A Dfillpinc.h259 * @param[in] backLog Defines the maximum length to which the queue of pending connections for fd can grow.
262 * @note The backLog value provided in the FtListen() API must be between 0 and MAX CONNECTION configured during
263 * init. Else, stack will take default value, MAX CONNECTION number as the backLog.
265 extern FILLP_INT DLL_API FtListen(FILLP_INT fd, FILLP_INT backLog);

Completed in 10 milliseconds