Searched refs:SettingsFrame (Results 1 – 9 of 9) sorted by relevance
/external/grpc-grpc/tools/http2_interop/ |
D | settings.go | 13 type SettingsFrame struct { struct 57 func (f *SettingsFrame) GetHeader() *FrameHeader { argument 61 func (f *SettingsFrame) ParsePayload(r io.Reader) error { argument 69 func (f *SettingsFrame) UnmarshalPayload(raw []byte) error { argument 88 func (f *SettingsFrame) MarshalPayload() ([]byte, error) { argument 97 func (f *SettingsFrame) MarshalBinary() ([]byte, error) { argument
|
D | s6.5.go | 17 sf := &SettingsFrame{ 44 sf := &SettingsFrame{} 71 if f, ok := f.(*SettingsFrame); ok {
|
D | http2interop.go | 49 f = &SettingsFrame{ 125 sf := &SettingsFrame{ 330 func http2Connect(c net.Conn, sf *SettingsFrame) error { argument 336 sf = &SettingsFrame{}
|
/external/grpc-grpc/test/http2_test/ |
D | test_max_streams.py | 37 {hyperframe.frame.SettingsFrame.MAX_CONCURRENT_STREAMS: 1})
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | frame.go | 693 type SettingsFrame struct { struct 722 f := &SettingsFrame{FrameHeader: fh, p: p} 732 func (f *SettingsFrame) IsAck() bool { argument 736 func (f *SettingsFrame) Value(s SettingID) (v uint32, ok bool) { argument 751 func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error { argument 1542 case *SettingsFrame:
|
D | transport.go | 1505 if _, ok := f.(*SettingsFrame); !ok { 1527 case *SettingsFrame: 1974 func (rl *clientConnReadLoop) processSettings(f *SettingsFrame) error {
|
D | server.go | 1337 if _, ok := f.(*SettingsFrame); !ok { 1344 case *SettingsFrame: 1478 func (sc *serverConn) processSettings(f *SettingsFrame) error {
|
/external/syzkaller/vendor/google.golang.org/grpc/transport/ |
D | http2_server.go | 268 sf, ok := frame.(*http2.SettingsFrame) 472 case *http2.SettingsFrame: 617 func (t *http2Server) handleSettings(f *http2.SettingsFrame) {
|
D | http2_client.go | 915 func (t *http2Client) handleSettings(f *http2.SettingsFrame, isFirst bool) { 1125 sf, ok := frame.(*http2.SettingsFrame) 1165 case *http2.SettingsFrame:
|