Home
last modified time | relevance | path

Searched refs:_PyIsSelectable_fd (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Include/
Dfileobject.h47 #define _PyIsSelectable_fd(FD) (1) macro
49 #define _PyIsSelectable_fd(FD) ((unsigned int)(FD) < (unsigned int)FD_SETSIZE) macro
/external/python/cpython2/Include/
Dfileobject.h89 #define _PyIsSelectable_fd(FD) (((FD) >= 0) && ((FD) < FD_SETSIZE)) macro
91 #define _PyIsSelectable_fd(FD) (1) macro
/external/python/cpython2/Modules/
Dossaudiodev.c429 if (!_PyIsSelectable_fd(self->fd)) { in oss_writeall()
Dselectmodule.c113 if (!_PyIsSelectable_fd(v)) { in seq2set()
D_ssl.c1727 if (!_PyIsSelectable_fd(s->sock_fd)) in check_socket_and_wait_for_timeout()
Dsocketmodule.c495 #define IS_SELECTABLE(s) (_PyIsSelectable_fd((s)->sock_fd) || (s)->sock_timeout <= 0.0)
/external/python/cpython3/Modules/
Dossaudiodev.c474 if (!_PyIsSelectable_fd(self->fd)) { in oss_writeall()
Dselectmodule.c112 if (!_PyIsSelectable_fd(v)) { in seq2set()
D_ssl.c2215 if (!_PyIsSelectable_fd(s->sock_fd)) in PySSL_select()
Dsocketmodule.c544 #define IS_SELECTABLE(s) (_PyIsSelectable_fd((s)->sock_fd) || (s)->sock_timeout <= 0)