Lines Matching refs:as_bytes
199 write(pty.master, string.as_bytes()).unwrap(); in test_openpty()
202 assert_eq!(&buf, string.as_bytes()); in test_openpty()
208 assert_eq!(&buf, echoed_string.as_bytes()); in test_openpty()
213 write(pty.slave, string2.as_bytes()).unwrap(); in test_openpty()
216 assert_eq!(&buf, echoed_string2.as_bytes()); in test_openpty()
248 write(pty.master, string.as_bytes()).unwrap(); in test_openpty_with_termios()
251 assert_eq!(&buf, string.as_bytes()); in test_openpty_with_termios()
256 assert_eq!(&buf, echoed_string.as_bytes()); in test_openpty_with_termios()
261 write(pty.slave, string2.as_bytes()).unwrap(); in test_openpty_with_termios()
264 assert_eq!(&buf, echoed_string2.as_bytes()); in test_openpty_with_termios()
287 write(STDOUT_FILENO, string.as_bytes()).unwrap(); in test_forkpty()
297 assert_eq!(&buf, echoed_string.as_bytes()); in test_forkpty()