Searched refs:l (Results 1 – 10 of 10) sorted by relevance
/ssl/test/runner/ |
A D | shim_dispatcher.go | 59 d.shims[l.shimID] = l 61 return l, nil 66 delete(d.shims, l.shimID) 158 return l.shimID 162 l.dispatcher.unregisterShim(l) 170 l.lock.Lock() 171 if l.err == nil { 172 l.err = err 173 close(l.connChan) 175 l.lock.Unlock() [all …]
|
A D | tls.go | 51 func (l *listener) Accept() (c net.Conn, err error) { 52 c, err = l.Listener.Accept() 56 c = Server(c, l.config) 65 l := new(listener) 66 l.Listener = inner 67 l.config = config 68 return l 79 l, err := net.Listen(network, laddr) 83 return NewListener(l, config), nil
|
A D | recordingconn.go | 58 …if l := len(r.flows); flowType == specialFlow || r.isDatagram || l == 0 || r.flows[l-1].flowType !… 63 r.flows[l-1].data = append(r.flows[l-1].data, data...)
|
A D | shim_ticket.go | 65 if l := len(in); l == 0 || l%block.BlockSize() != 0 {
|
A D | handshake_messages.go | 721 if l := len(hello.BytesOrPanic()) % m.pad; l != 0 { 722 padding.AddBytes(make([]byte, m.pad-l)) 1664 if l := len(m.customExtension); l > 0 { 2419 l := int(data[1])<<16 | int(data[2])<<8 | int(data[3]) 2420 if l != len(data)-4 {
|
A D | key_agreement.go | 252 l := (len(publicKey) - 1) / 2 253 tmp := make([]byte, 1+l) 256 copy(tmp[1:], publicKey[1:1+l])
|
A D | handshake_server.go | 1934 l := config.Bugs.NewSessionIDLength 1935 if l == 0 { 1936 l = 32 1938 hs.hello.sessionID = make([]byte, l)
|
A D | handshake_client.go | 462 if l := len(proto); l > 255 { 465 nextProtosLength += 1 + l
|
/ssl/ |
A D | ssl_cipher.cc | 827 ch = *l; in ssl_cipher_process_rulestr() 840 l++; in ssl_cipher_process_rulestr() 846 l++; in ssl_cipher_process_rulestr() 856 l++; in ssl_cipher_process_rulestr() 859 l++; in ssl_cipher_process_rulestr() 862 l++; in ssl_cipher_process_rulestr() 865 l++; in ssl_cipher_process_rulestr() 870 l++; in ssl_cipher_process_rulestr() 884 l++; in ssl_cipher_process_rulestr() 967 l++; in ssl_cipher_process_rulestr() [all …]
|
A D | ssl_test.cc | 10028 for (size_t l = 0; l < num; l++) { in TEST() local 10029 SCOPED_TRACE(l); in TEST() 10030 list2.resize(l); in TEST() 10032 for (size_t i = 0; i < l; i++) { in TEST()
|
Completed in 51 milliseconds