Searched refs:is_socket (Results 1 – 10 of 10) sorted by relevance
/third_party/gstreamer/gstplugins_base/gst/tcp/ |
D | gstmultifdsink.h | 57 gboolean is_socket; member
|
D | gstmultifdsink.c | 540 client->is_socket = TRUE; in gst_multi_fd_sink_new_client() 783 if (client->is_socket) { in gst_multi_fd_sink_handle_client_write()
|
/third_party/python/Modules/ |
D | signalmodule.c | 737 int is_socket; local 763 is_socket = 0; 795 is_socket = 1; 805 wakeup.use_send = is_socket;
|
/third_party/python/Lib/test/ |
D | test_pathlib.py | 2303 self.assertFalse(P.is_socket()) 2310 self.assertFalse((P / 'fileA').is_socket()) 2311 self.assertFalse((P / 'dirA').is_socket()) 2312 self.assertFalse((P / 'non-existing').is_socket()) 2313 self.assertFalse((P / 'fileA' / 'bah').is_socket()) 2314 self.assertIs((P / 'fileA\udfff').is_socket(), False) 2315 self.assertIs((P / 'fileA\x00').is_socket(), False) 2328 self.assertTrue(P.is_socket()) 2331 self.assertIs(self.cls(BASE, 'mysock\udfff').is_socket(), False) 2332 self.assertIs(self.cls(BASE, 'mysock\x00').is_socket(), False) [all …]
|
/third_party/glib/glib/ |
D | giowin32.c | 2124 gboolean is_fd, is_socket; in g_io_channel_unix_new() local 2131 is_socket = (getsockopt (fd, SOL_SOCKET, SO_TYPE, (char *) &optval, &optlen) != SOCKET_ERROR); in g_io_channel_unix_new() 2133 if (is_fd && is_socket) in g_io_channel_unix_new() 2139 if (is_socket) in g_io_channel_unix_new()
|
/third_party/python/Lib/asyncio/ |
D | unix_events.py | 598 is_socket = stat.S_ISSOCK(mode) 599 if not (is_char or is_fifo or is_socket): 612 if is_socket or (is_fifo and not sys.platform.startswith("aix")):
|
/third_party/python/Lib/ |
D | pathlib.py | 1414 def is_socket(self): member in Path
|
/third_party/python/Doc/library/ |
D | pathlib.rst | 691 :meth:`~Path.is_fifo()`, :meth:`~Path.is_socket()` now return ``False`` 863 .. method:: Path.is_socket()
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 1082 :meth:`~pathlib.Path.is_socket()` now return ``False`` instead of raising
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 4160 :meth:`~pathlib.Path.is_socket()` now return ``False`` instead of raising
|