OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConnBegin
(Results
1 - 3
of
3
) sorted by null
/external/syzkaller/vendor/google.golang.org/grpc/stats/
stats.go
194
//
ConnBegin
contains the stats of a connection when it is established.
195
type
ConnBegin
struct {
196
// Client is true if this
ConnBegin
is from client side.
201
func (s *
ConnBegin
) IsClient() bool { return s.Client }
203
func (s *
ConnBegin
) isConnStats() {}
/external/syzkaller/vendor/google.golang.org/grpc/transport/
http2_server.go
237
connBegin
:= &stats.
ConnBegin
{}
238
t.stats.HandleConn(t.ctx,
connBegin
)
[
all
...]
http2_client.go
255
connBegin
:= &stats.
ConnBegin
{
258
t.statsHandler.HandleConn(t.ctx,
connBegin
)
[
all
...]
Completed in 4994 milliseconds