Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_base/gst/tcp/
Dgstmultifdsink.h57 gboolean is_socket; member
Dgstmultifdsink.c540 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/
Dsignalmodule.c737 int is_socket; local
763 is_socket = 0;
795 is_socket = 1;
805 wakeup.use_send = is_socket;
/third_party/python/Lib/test/
Dtest_pathlib.py2303 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/
Dgiowin32.c2124 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/
Dunix_events.py598 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/
Dpathlib.py1414 def is_socket(self): member in Path
/third_party/python/Doc/library/
Dpathlib.rst691 :meth:`~Path.is_fifo()`, :meth:`~Path.is_socket()` now return ``False``
863 .. method:: Path.is_socket()
/third_party/python/Doc/whatsnew/
D3.8.rst1082 :meth:`~pathlib.Path.is_socket()` now return ``False`` instead of raising
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst4160 :meth:`~pathlib.Path.is_socket()` now return ``False`` instead of raising