Lines Matching defs:flag
156 setblocking(bool) -- set or clear the blocking I/O flag\n\
603 /* Does WSASocket() support the WSA_FLAG_NO_HANDLE_INHERIT flag? */
2810 /* s.setblocking(flag) method. Argument:
2832 "setblocking(flag)\n\
2834 Set the socket to blocking (flag is true) or non-blocking (false).\n\
2989 int flag;
2996 /* setsockopt(level, opt, flag) */
3008 /* setsockopt(level, opt, flag) */
3010 &level, &optname, &flag)) {
3012 (char*)&flag, sizeof flag);
3017 /* setsockopt(level, opt, None, flag) */
3078 int flag = 0;
3097 flagsize = sizeof flag;
3099 (void *)&flag, &flagsize);
3102 return PyLong_FromLong(flag);
4863 "shutdown(flag)\n\
4865 Shut down the reading side of the socket (flag == SHUT_RD), the writing side\n\
4866 of the socket (flag == SHUT_WR), or both ends (flag == SHUT_RDWR).");
5158 * than 2.6.27 if SOCK_CLOEXEC flag is set in the socket type. */
5534 int res, flag = 0;
5546 flag = 1;
5558 if (flag)