Lines Matching refs:as_bytes
211 write(pty.master, string.as_bytes()).unwrap(); in test_openpty()
214 assert_eq!(&buf, string.as_bytes()); in test_openpty()
220 assert_eq!(&buf, echoed_string.as_bytes()); in test_openpty()
225 write(pty.slave, string2.as_bytes()).unwrap(); in test_openpty()
228 assert_eq!(&buf, echoed_string2.as_bytes()); in test_openpty()
260 write(pty.master, string.as_bytes()).unwrap(); in test_openpty_with_termios()
263 assert_eq!(&buf, string.as_bytes()); in test_openpty_with_termios()
268 assert_eq!(&buf, echoed_string.as_bytes()); in test_openpty_with_termios()
273 write(pty.slave, string2.as_bytes()).unwrap(); in test_openpty_with_termios()
276 assert_eq!(&buf, echoed_string2.as_bytes()); in test_openpty_with_termios()
297 write(STDOUT_FILENO, string.as_bytes()).unwrap(); in test_forkpty()
309 assert_eq!(&buf, echoed_string.as_bytes()); in test_forkpty()