Home
last modified time | relevance | path

Searched refs:FD_SETSIZE (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/Include/sys/
Dfd_set.h58 #ifndef FD_SETSIZE
59 #define FD_SETSIZE 256 macro
63 __fd_mask fds_bits[__howmany(FD_SETSIZE, __NFDBITS)];
78 for (__i = 0; __i < __howmany(FD_SETSIZE, __NFDBITS); __i++) \
100 for (__i = 0; __i < __howmany(FD_SETSIZE, __NFDBITS); __i++) \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dselectmodule.c25 #if defined(MS_WINDOWS) && !defined(FD_SETSIZE)
26 #define FD_SETSIZE 512 macro
70 reap_obj(pylist fd2obj[FD_SETSIZE + 1]) in reap_obj()
73 for (i = 0; i < FD_SETSIZE + 1 && fd2obj[i].sentinel >= 0; i++) { in reap_obj()
85 seq2set(PyObject *seq, fd_set *set, pylist fd2obj[FD_SETSIZE + 1]) in seq2set()
117 if (v < 0 || v >= FD_SETSIZE) { in seq2set()
128 if (index >= FD_SETSIZE) { in seq2set()
149 set2list(fd_set *set, pylist fd2obj[FD_SETSIZE + 1]) in set2list()
168 if (fd > FD_SETSIZE) { in set2list()
190 #if FD_SETSIZE > 1024
[all …]
D_ssl.c1149 if (s->sock_fd >= FD_SETSIZE) in check_socket_and_wait_for_timeout()
Dsocketmodule.c470 #define IS_SELECTABLE(s) ((s)->sock_fd < FD_SETSIZE || s->sock_timeout <= 0.0)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
Dselectmodule.c25 #if defined(MS_WINDOWS) && !defined(FD_SETSIZE)
26 #define FD_SETSIZE 512 macro
70 reap_obj(pylist fd2obj[FD_SETSIZE + 1]) in reap_obj()
73 for (i = 0; i < FD_SETSIZE + 1 && fd2obj[i].sentinel >= 0; i++) { in reap_obj()
85 seq2set(PyObject *seq, fd_set *set, pylist fd2obj[FD_SETSIZE + 1]) in seq2set()
117 if (v < 0 || v >= FD_SETSIZE) { in seq2set()
128 if (index >= FD_SETSIZE) { in seq2set()
149 set2list(fd_set *set, pylist fd2obj[FD_SETSIZE + 1]) in set2list()
168 if (fd > FD_SETSIZE) { in set2list()
190 #if FD_SETSIZE > 1024
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dselectmodule.c36 #if defined(MS_WINDOWS) && !defined(FD_SETSIZE)
37 #define FD_SETSIZE 512 macro
81 reap_obj(pylist fd2obj[FD_SETSIZE + 1]) in reap_obj()
84 for (i = 0; i < FD_SETSIZE + 1 && fd2obj[i].sentinel >= 0; i++) { in reap_obj()
95 seq2set(PyObject *seq, fd_set *set, pylist fd2obj[FD_SETSIZE + 1]) in seq2set()
135 if (index >= FD_SETSIZE) { in seq2set()
156 set2list(fd_set *set, pylist fd2obj[FD_SETSIZE + 1]) in set2list()
190 #if FD_SETSIZE > 1024
206 pylist rfd2obj[FD_SETSIZE + 1]; in select_select()
207 pylist wfd2obj[FD_SETSIZE + 1]; in select_select()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
Dpyport.h806 #ifndef FD_SETSIZE
807 #define FD_SETSIZE 256
820 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dpyport.h806 #ifndef FD_SETSIZE
807 #define FD_SETSIZE 256
820 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
Dfileobject.h100 #define _PyIsSelectable_fd(FD) (((FD) >= 0) && ((FD) < FD_SETSIZE))
Dpyport.h845 #ifndef FD_SETSIZE
846 #define FD_SETSIZE 256
859 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dpyport.h829 #ifndef FD_SETSIZE
830 #define FD_SETSIZE 256
843 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
Dfileobject.h89 #define _PyIsSelectable_fd(FD) (((FD) >= 0) && ((FD) < FD_SETSIZE))
/device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
Dmm_qcamera_socket.c682 if (client_socket >= FD_SETSIZE) { in eztune_proc()
717 if ((client_socket < FD_SETSIZE) && (FD_ISSET(client_socket, &tsfds))) { in eztune_proc()
775 if (prev_client_socket >= FD_SETSIZE) { in eztune_proc()
815 if ((prev_client_socket < FD_SETSIZE) && (FD_ISSET(prev_client_socket, &tsfds))) { in eztune_proc()