Lines Matching defs:write
287 /// Normally, a write in OpenSSL will always write out all of the requested data, even if it
288 /// requires more than one TLS record or write to the underlying stream. This option will
289 /// cause a write to return after writing a single TLS record instead.
302 /// Note that `SslStream::read` and `SslStream::write` will automatically retry regardless
1753 write!(fmt, "SslContext")
2065 write!(fmt, "{}", self.name())
2327 fn write(&mut self, buf: &[u8]) -> c_int {
3489 /// call to read or write. Otherwise the `connect` and `accept` methods can be used to
3643 /// OpenSSL is waiting on read or write readiness.
3647 // zero-length write. OpenSSL will likely correctly report back to us
3663 /// Like `write`, but returns an `ssl::Error` rather than an `io::Error`.
3666 /// OpenSSL is waiting on read or write readiness.
3674 let ret = self.ssl.write(buf);
3783 /// It is inadvisable to read from or write to the underlying stream as it
3819 fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
4012 /// It is inadvisable to read from or write to the underlying stream as it