Home
last modified time | relevance | path

Searched refs:new_v4 (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/tokio/tests/
Dtcp_socket.rs11 let srv = assert_ok!(TcpSocket::new_v4()); in basic_usage_v4()
18 let cli = assert_ok!(TcpSocket::new_v4()); in basic_usage_v4()
47 let srv = assert_ok!(TcpSocket::new_v4()); in bind_before_connect()
54 let cli = assert_ok!(TcpSocket::new_v4()); in bind_before_connect()
/external/rust/crates/uuid/src/
Dv4.rs27 pub fn new_v4() -> Uuid { in new_v4() method
47 let uuid = Uuid::new_v4(); in test_new()
55 let uuid = Uuid::new_v4(); in test_get_version()
/external/rust/crates/tokio/src/net/tcp/
Dsocket.rs119 pub fn new_v4() -> io::Result<TcpSocket> { in new_v4() method
120 let inner = mio::net::TcpSocket::new_v4()?; in new_v4()
/external/rust/crates/mio/src/net/tcp/
Dsocket.rs52 pub fn new_v4() -> io::Result<TcpSocket> { in new_v4() method
65 TcpSocket::new_v4() in new_for_addr()
/external/rust/crates/uuid/
DREADME.md42 * `v4` - adds the `Uuid::new_v4` function and the ability to randomly
101 let my_uuid = Uuid::new_v4();
/external/rust/crates/rusqlite/src/types/
Dto_sql.rs356 let id = Uuid::new_v4(); in test_uuid()
/external/rust/crates/nix/src/sys/socket/
Daddr.rs363 pub fn new_v4(a: u8, b: u8, c: u8, d: u8) -> IpAddr { in new_v4() method