| /external/boringssl/src/ssl/test/runner/ |
| D | conn.go | 26 type Conn struct { struct 28 conn net.Conn 29 isDTLS bool 30 isClient bool 33 handshakeMutex sync.Mutex // handshakeMutex < in.Mutex, out.Mutex, errMutex 34 handshakeErr error // error resulting from handshake 35 wireVersion uint16 // TLS wire version 36 vers uint16 // TLS version 37 haveVers bool // version has been negotiated 38 config *Config // configuration passed to constructor [all …]
|
| D | packet_adapter.go | 30 net.Conn anonMember 37 func newPacketAdaptor(conn net.Conn) *packetAdaptor { 134 net.Conn anonMember 141 func newReplayAdaptor(conn net.Conn) net.Conn { 159 net.Conn anonMember 165 func newDamageAdaptor(conn net.Conn) *damageAdaptor {
|
| D | dtls.go | 488 func DTLSServer(conn net.Conn, config *Config) *Conn { 498 func DTLSClient(conn net.Conn, config *Config) *Conn {
|
| D | mock_quic_transport.go | 73 net.Conn anonMember 80 func newMockQUICTransport(conn net.Conn) *mockQUICTransport {
|
| D | tls.go | 27 func Server(conn net.Conn, config *Config) *Conn { 37 func Client(conn net.Conn, config *Config) *Conn {
|
| D | recordingconn.go | 47 net.Conn anonMember
|
| /external/cronet/third_party/boringssl/src/ssl/test/runner/ |
| D | conn.go | 26 type Conn struct { struct 28 conn net.Conn 29 isDTLS bool 30 isClient bool 33 handshakeMutex sync.Mutex // handshakeMutex < in.Mutex, out.Mutex, errMutex 34 handshakeErr error // error resulting from handshake 35 wireVersion uint16 // TLS wire version 36 vers uint16 // TLS version 37 haveVers bool // version has been negotiated 38 config *Config // configuration passed to constructor [all …]
|
| D | packet_adapter.go | 30 net.Conn anonMember 37 func newPacketAdaptor(conn net.Conn) *packetAdaptor { 134 net.Conn anonMember 141 func newReplayAdaptor(conn net.Conn) net.Conn { 159 net.Conn anonMember 165 func newDamageAdaptor(conn net.Conn) *damageAdaptor {
|
| D | dtls.go | 488 func DTLSServer(conn net.Conn, config *Config) *Conn { 498 func DTLSClient(conn net.Conn, config *Config) *Conn {
|
| D | mock_quic_transport.go | 73 net.Conn anonMember 80 func newMockQUICTransport(conn net.Conn) *mockQUICTransport {
|
| D | tls.go | 27 func Server(conn net.Conn, config *Config) *Conn { 37 func Client(conn net.Conn, config *Config) *Conn {
|
| D | recordingconn.go | 47 net.Conn anonMember
|
| /external/angle/third_party/spirv-tools/src/utils/vscode/src/lsp/jsonrpc2/ |
| D | jsonrpc2.go | 30 type Conn struct { struct 31 seq int64 // must only be accessed using atomic operations 32 handlers []Handler 33 stream Stream 34 err error 35 pendingMu sync.Mutex // protects the pending map 36 pending map[ID]chan *WireResponse 37 handlingMu sync.Mutex // protects the handling map 38 handling map[ID]*Request 87 func (c *Conn) AddHandler(handler Handler) { [all …]
|
| D | handler.go | 39 Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool 51 Request(ctx context.Context, conn *Conn, direction Direction, r *WireRequest) context.Context 53 Response(ctx context.Context, conn *Conn, direction Direction, r *WireResponse) context.Context
|
| /external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/ |
| D | jsonrpc2.go | 30 type Conn struct { struct 31 seq int64 // must only be accessed using atomic operations 32 handlers []Handler 33 stream Stream 34 err error 35 pendingMu sync.Mutex // protects the pending map 36 pending map[ID]chan *WireResponse 37 handlingMu sync.Mutex // protects the handling map 38 handling map[ID]*Request 87 func (c *Conn) AddHandler(handler Handler) { [all …]
|
| D | handler.go | 39 Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool 51 Request(ctx context.Context, conn *Conn, direction Direction, r *WireRequest) context.Context 53 Response(ctx context.Context, conn *Conn, direction Direction, r *WireResponse) context.Context
|
| /external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/ |
| D | jsonrpc2.go | 30 type Conn struct { struct 31 seq int64 // must only be accessed using atomic operations 32 handlers []Handler 33 stream Stream 34 err error 35 pendingMu sync.Mutex // protects the pending map 36 pending map[ID]chan *WireResponse 37 handlingMu sync.Mutex // protects the handling map 38 handling map[ID]*Request 87 func (c *Conn) AddHandler(handler Handler) { [all …]
|
| D | handler.go | 39 Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool 51 Request(ctx context.Context, conn *Conn, direction Direction, r *WireRequest) context.Context 53 Response(ctx context.Context, conn *Conn, direction Direction, r *WireResponse) context.Context
|
| /external/rust/crates/hyper/src/server/ |
| D | accept.rs | 20 type Conn; typedef 28 ) -> Poll<Option<Result<Self::Conn, Self::Error>>>; in poll_accept() 50 pub fn poll_fn<F, IO, E>(func: F) -> impl Accept<Conn = IO, Error = E> in poll_fn() 63 type Conn = IO; in poll_fn() typedef 68 ) -> Poll<Option<Result<Self::Conn, Self::Error>>> { in poll_fn() 83 pub fn from_stream<S, IO, E>(stream: S) -> impl Accept<Conn = IO, Error = E> in from_stream() 98 type Conn = IO; in from_stream() typedef 103 ) -> Poll<Option<Result<Self::Conn, Self::Error>>> { in from_stream()
|
| D | tcp.rs | 260 type Conn = AddrStream; typedef 266 ) -> Poll<Option<Result<Self::Conn, Self::Error>>> { in poll_accept()
|
| /external/grpc-grpc/tools/http2_interop/ |
| D | http2interop.go | 315 func expectGoAway(conn net.Conn) (*GoAwayFrame, error) { 330 func expectGoAwaySoon(conn net.Conn) (*GoAwayFrame, error) { 344 func http2Connect(c net.Conn, sf *SettingsFrame) error { 360 net.Conn anonMember
|
| /external/rust/crates/grpcio-sys/grpc/tools/http2_interop/ |
| D | http2interop.go | 315 func expectGoAway(conn net.Conn) (*GoAwayFrame, error) { 330 func expectGoAwaySoon(conn net.Conn) (*GoAwayFrame, error) { 344 func http2Connect(c net.Conn, sf *SettingsFrame) error { 360 net.Conn anonMember
|
| /external/rust/crates/hyper/src/proto/h1/ |
| D | conn.rs | 34 pub(crate) struct Conn<I, B, T> { struct 40 impl<I, B, T> Conn<I, B, T> argument 798 impl<I, B: Buf, T> fmt::Debug for Conn<I, B, T> { implementation 808 impl<I: Unpin, B, T> Unpin for Conn<I, B, T> {} implementation
|
| /external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
| D | tsclient.go | 159 *jsonrpc2.Conn anonMember
|
| /external/angle/third_party/spirv-tools/src/utils/vscode/src/lsp/protocol/ |
| D | tsclient.go | 159 *jsonrpc2.Conn anonMember
|