Lines Matching refs:socket_path
470 let mut socket_path = tmpdir(); in unix_seqpacket_listener_path() localVariable
471 socket_path.push("unix_seqpacket_listener_path"); in unix_seqpacket_listener_path()
473 UnixSeqpacketListener::bind(&socket_path) in unix_seqpacket_listener_path()
477 assert_eq!(socket_path, listener_path); in unix_seqpacket_listener_path()
482 let mut socket_path = tmpdir(); in unix_seqpacket_path_exists_pass() localVariable
483 socket_path.push("path_to_socket"); in unix_seqpacket_path_exists_pass()
485 UnixSeqpacketListener::bind(&socket_path) in unix_seqpacket_path_exists_pass()
489 UnixSeqpacket::connect(socket_path.as_path()).expect("UnixSeqpacket::connect failed"); in unix_seqpacket_path_exists_pass()
494 let mut socket_path = tmpdir(); in unix_seqpacket_path_listener_accept() localVariable
495 socket_path.push("path_listerner_accept"); in unix_seqpacket_path_listener_accept()
497 UnixSeqpacketListener::bind(&socket_path) in unix_seqpacket_path_listener_accept()
501 UnixSeqpacket::connect(socket_path.as_path()).expect("UnixSeqpacket::connect failed"); in unix_seqpacket_path_listener_accept()