Home
last modified time | relevance | path

Searched defs:SocketType (Results 1 – 9 of 9) sorted by relevance

/third_party/rust/crates/rustix/src/net/
Dsocketpair.rs16 type_: SocketType, in socketpair()
Dsocket.rs38 pub fn socket(domain: AddressFamily, type_: SocketType, protocol: Protocol) -> io::Result<OwnedFd> { in socket()
65 type_: SocketType, in socket_with()
Dsockopt.rs34 pub fn get_socket_type<Fd: AsFd>(fd: Fd) -> io::Result<SocketType> { in get_socket_type()
/third_party/rust/crates/rustix/src/backend/libc/net/
Dsyscalls.rs146 type_: SocketType, in socket()
161 type_: SocketType, in socket_with()
374 type_: SocketType, in socketpair()
466 pub(crate) fn get_socket_type(fd: BorrowedFd<'_>) -> io::Result<SocketType> { in get_socket_type()
Dtypes.rs13 pub struct SocketType(pub(crate) RawSocketType); struct
16 impl SocketType { implementation
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
Dtypes.rs13 pub struct SocketType(pub(crate) RawSocketType); struct
16 impl SocketType { implementation
Dsyscalls.rs38 type_: SocketType, in socket()
62 type_: SocketType, in socket_with()
92 type_: SocketType, in socketpair()
859 pub(crate) fn get_socket_type(fd: BorrowedFd<'_>) -> io::Result<SocketType> { in get_socket_type()
/third_party/openssl/apps/lib/
Dvms_term_sock.c283 int SocketType, in CreateSocketPair()
/third_party/rust/crates/rustix/src/backend/linux_raw/
Dconv.rs622 fn from(pair: (crate::net::SocketType, crate::net::SocketFlags)) -> Self { in from()