Home
last modified time | relevance | path

Searched refs:PF_RDS (Results 1 – 18 of 18) sorted by relevance

/third_party/musl/include/sys/
Dsocket.h123 #define PF_RDS 21 macro
173 #define AF_RDS PF_RDS
/third_party/musl/porting/linux/user/include/sys/
Dsocket.h127 #define PF_RDS 21 macro
177 #define AF_RDS PF_RDS
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
Dsocket.h112 #define PF_RDS 21 macro
162 #define AF_RDS PF_RDS
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dsocket.h123 #define PF_RDS 21 macro
173 #define AF_RDS PF_RDS
/third_party/musl/porting/uniproton/kernel/include/sys/
Dsocket.h123 #define PF_RDS 21 macro
173 #define AF_RDS PF_RDS
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dsocket.h123 #define PF_RDS 21 macro
173 #define AF_RDS PF_RDS
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dsocket.h123 #define PF_RDS 21 macro
173 #define AF_RDS PF_RDS
/third_party/musl/ndk_musl_include/sys/
Dsocket.h127 #define PF_RDS 21 macro
177 #define AF_RDS PF_RDS
/third_party/rust/crates/libc/libc-test/semver/
Dfuchsia.txt567 PF_RDS
Dlinux.txt1668 PF_RDS
Dandroid.txt1708 PF_RDS
/third_party/python/Lib/test/
Dtest_socket.py98 s = socket.socket(socket.PF_RDS, socket.SOCK_SEQPACKET, 0)
280 self.serv = socket.socket(socket.PF_RDS, socket.SOCK_SEQPACKET, 0)
472 self.cli = socket.socket(socket.PF_RDS, socket.SOCK_SEQPACKET, 0)
2228 socket.PF_RDS
2231 with socket.socket(socket.PF_RDS, socket.SOCK_SEQPACKET, 0) as s:
2236 with socket.socket(socket.PF_RDS, socket.SOCK_SEQPACKET, 0) as s:
/third_party/rust/crates/libc/src/unix/linux_like/
Dmod.rs759 pub const PF_RDS: ::c_int = AF_RDS; constant
/third_party/python/Modules/
Dsocketmodule.c7364 #ifdef PF_RDS
7365 PyModule_AddIntMacro(m, PF_RDS);
/third_party/rust/crates/libc/src/fuchsia/
Dmod.rs1734 pub const PF_RDS: ::c_int = AF_RDS; constant
/third_party/python/Doc/library/
Dsocket.rst470 PF_RDS
/third_party/python/Doc/whatsnew/
D3.3.rst1893 * The :class:`~socket.socket` class now supports the PF_RDS protocol family
/third_party/python/Misc/
DHISTORY10237 - Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support.