Home | History | Annotate | Download | only in runner

Lines Matching defs:Write

140 // SetDeadline sets the read and write deadlines associated with the connection.
141 // A zero value for t means Read and Write will not time out.
142 // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
153 // SetWriteDeadline sets the write deadline on the underlying conneciton.
154 // A zero value for t means Write will not time out.
155 // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
194 // tests since we don't concurrently read and write the same tls.Conn
1031 c.hand.Write(data)
1083 return c.conn.Write(record)
1133 c.pendingFlight.Write(data)
1237 _, err = c.conn.Write(b.data)
1479 // Write writes data to the connection.
1480 func (c *Conn) Write(b []byte) (int, error) {
1748 // write failing.
1767 // explicitly: the first Read or Write will call it automatically.
1779 c.conn.Write([]byte{
1785 c.conn.Write([]byte{alertLevelError, byte(alertInternalError)})
1864 contextHash.Write(context)
2017 _, err := c.conn.Write(payload)