Searched refs:setErrorLocked (Results 1 – 2 of 2) sorted by relevance
/external/boringssl/src/ssl/test/runner/ |
D | conn.go | 193 func (hc *halfConn) setErrorLocked(err error) error { func 758 return c.in.setErrorLocked(errors.New("tls: buffered handshake messages on cipher change")) 799 c.in.setErrorLocked(err) 812 return 0, nil, c.in.setErrorLocked(errors.New("tls: unsupported SSLv2 handshake received")) 833 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: received record with version %x when expecting… 838 return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: oversized record received with length %d", n)) 851 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: first record does not look like a TLS handshak… 859 c.in.setErrorLocked(err) 881 return 0, nil, c.in.setErrorLocked(c.sendAlert(alertValue)) 888 return 0, nil, c.in.setErrorLocked(fmt.Errorf("tls: outer record type is not application data")) [all …]
|
D | dtls.go | 67 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: received record with version %x when expectin… 73 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: received record with version %x when expectin… 85 return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: bad epoch")) 89 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)) 105 return 0, nil, c.in.setErrorLocked(c.sendAlert(alertValue)) 115 …return 0, nil, c.in.setErrorLocked(fmt.Errorf("dtls: ChangeCipherSpec not packed together with Fin… 460 return nil, c.in.setErrorLocked(c.sendAlert(alertInternalError))
|