Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_signal.py122 os.set_blocking(w1, False)
123 os.set_blocking(w2, False)
155 os.set_blocking(wfd, True)
162 os.set_blocking(wfd, False)
Dtest_pty.py88 os.set_blocking(master_fd, False)
97 os.set_blocking(master_fd, blocking)
Dtest_readline.py238 os.set_blocking(master, False)
Dtest_os.py1683 self.check(os.set_blocking, True)
3067 os.set_blocking(fd, False)
3070 os.set_blocking(fd, True)
Dtest_io.py3602 os.set_blocking(r, False)
3603 os.set_blocking(w, False)
/external/valgrind/auxprogs/
Dvalgrind-listener.c120 static void set_blocking ( int sd ) in set_blocking() function
151 set_blocking(sd); in read_from_sd()
Dvalgrind-di-server.c527 static void set_blocking ( int sd ) in set_blocking() function
966 set_blocking(sd);
1191 set_blocking(new_sd); in main()
/external/python/cpython3/Lib/
Dasyncore.py639 os.set_blocking(fd, False)
/external/valgrind/coregrind/m_debuginfo/
Dimage.c205 static Bool set_blocking ( int sd ) in set_blocking() function
891 if (!set_blocking(sd)) in ML_()
/external/python/cpython3/Lib/asyncio/
Dunix_events.py314 os.set_blocking(fd, False)
/external/python/cpython3/Doc/library/
Dos.rst845 See also :func:`set_blocking` and :meth:`socket.socket.setblocking`.
1156 .. function:: set_blocking(fd, blocking)
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1500 New :func:`~os.get_blocking` and :func:`~os.set_blocking` functions allow
/external/python/cpython3/Misc/
DNEWS7572 - Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get