Home
last modified time | relevance | path

Searched refs:lwip_fcntl (Results 1 – 12 of 12) sorted by relevance

/third_party/lwip/
D0052-lwip_fnctl-only-support-F_SETFL-F_GETFL.patch15 @@ -4107,7 +4107,12 @@ lwip_fcntl(int s, int cmd, int val)
18 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_fcntl(%d, UNIMPL: %d, %d)\n", s, cmd, val));
D0016-lstack-support-mysql-mode.patch694 -lwip_fcntl(int s, int cmd, ...)
713 lwip_fcntl(int s, int cmd, int val)
716 @@ -4337,7 +4028,6 @@ lwip_fcntl(int s, int cmd, int val)
836 -int lwip_fcntl(int s, int cmd, ...);
837 +int lwip_fcntl(int s, int cmd, int val);
840 int lwip_fcntl(int s, int cmd, int val);
D0060-lwip-add-udp-multicast.patch316 int lwip_fcntl(int s, int cmd, int val);
321 int lwip_fcntl(int s, int cmd, int val);
D0053-cleancode-improve-lwipopts.h-readability.patch351 @@ -4107,7 +4107,7 @@ lwip_fcntl(int s, int cmd, int val)
354 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_fcntl(%d, UNIMPL: %d, %d)\n", s, cmd, val));
1739 int lwip_fcntl(int s, int cmd, int val);
1742 int lwip_fcntl(int s, int cmd, int val);
1754 #define fcntl(s,cmd...) lwip_fcntl(s,cmd)
1758 #define fcntl(s,cmd,val) lwip_fcntl(s,cmd,val)
D0002-adapt-lstack.patch1452 +lwip_fcntl(int s, int cmd, ...)
1471 lwip_fcntl(int s, int cmd, int val)
1474 @@ -3848,6 +4333,7 @@ lwip_fcntl(int s, int cmd, int val)
4585 +int lwip_fcntl(int s, int cmd, ...);
4588 int lwip_fcntl(int s, int cmd, int val);
4600 +#define fcntl(s,cmd...) lwip_fcntl(s,cmd)
4604 #define fcntl(s,cmd,val) lwip_fcntl(s,cmd,val)
DCHANGELOG1027 * sockets.c: fixed bug #42117 lwip_fcntl does not set errno
/third_party/mbedtls/library/
Dnet_sockets.c342 if ((lwip_fcntl(ctx->fd, F_GETFL, 0) & O_NONBLOCK) != O_NONBLOCK) {
484 return lwip_fcntl(ctx->fd, F_SETFL, lwip_fcntl(ctx->fd, F_GETFL, 0) & ~O_NONBLOCK);
499 return lwip_fcntl(ctx->fd, F_SETFL, lwip_fcntl(ctx->fd, F_GETFL, 0) | O_NONBLOCK);
/third_party/NuttX/fs/vfs/
Dfs_fcntl.c300 ret = lwip_fcntl(fd, cmd, val); in fcntl()
360 reval = lwip_fcntl(fd, cmd, va_val); in fcntl64()
/third_party/lwip/test/unit/api/
Dtest_sockets.c66 int ret = lwip_fcntl(s, F_SETFL, O_NONBLOCK); in test_sockets_alloc_socket_nonblocking()
332 opt = lwip_fcntl(s2, F_GETFL, 0); in test_sockets_msgapi_tcp()
335 ret = lwip_fcntl(s2, F_SETFL, opt); in test_sockets_msgapi_tcp()
/third_party/curl/lib/
Dcurl_setup_once.h218 # define sfcntl lwip_fcntl
/third_party/lwip/src/include/lwip/
Dsockets.h607 int lwip_fcntl(int s, int cmd, int val);
693 #define fcntl(s,cmd,val) lwip_fcntl(s,cmd,val)
/third_party/lwip/src/api/
Dsockets.c3922 lwip_fcntl(int s, int cmd, int val) in lwip_fcntl() function
4000 return lwip_fcntl(s, cmd, val); in fcntl()