Searched refs:setErrorLocked (Results 1 – 2 of 2) sorted by relevance
/external/boringssl/src/ssl/test/runner/ |
D | conn.go | 149 func (hc *halfConn) setErrorLocked(err error) error { func 638 c.in.setErrorLocked(err) 650 return 0, nil, c.in.setErrorLocked(errors.New("tls: unsupported SSLv2 handshake received")) 658 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: received record with version %x when expecting… 663 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: received record with version %x when expecting… 668 return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: oversized record received with length %d", n)) 681 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: first record does not look like a TLS handshak… 689 c.in.setErrorLocked(err) 698 c.in.setErrorLocked(c.sendAlert(err)) 714 return c.in.setErrorLocked(errors.New("tls: unknown record type requested")) [all …]
|
D | dtls.go | 75 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: received record with version %x when expectin… 80 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: received record with version %x when expectin… 90 return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: bad sequence number")) 95 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: oversized record received with length %d", n)) 102 c.in.setErrorLocked(c.sendAlert(err)) 344 return n, c.out.setErrorLocked(&net.OpError{Op: "local error", Err: err}) 392 return nil, c.in.setErrorLocked(c.sendAlert(alertInternalError))
|