Lines Matching refs:socket_path
100 socket_path: Option<PathBuf>, field
142 socket_path: None, in default()
528 if cfg.socket_path.is_some() { in set_argument()
533 let mut socket_path = PathBuf::from(value.unwrap()); in set_argument() localVariable
534 if socket_path.is_dir() { in set_argument()
535 socket_path.push(format!("crosvm-{}.sock", getpid())); in set_argument()
537 if socket_path.exists() { in set_argument()
539 value: socket_path.to_string_lossy().into_owned(), in set_argument()
543 cfg.socket_path = Some(socket_path); in set_argument()
953 for socket_path in args { in handle_request()
954 match UnixSeqpacket::connect(&socket_path) { in handle_request()
960 socket_path, e in handle_request()
970 socket_path, e in handle_request()
978 error!("failed to connect to socket at '{}': {}", socket_path, e); in handle_request()