/thrift-3.4.0/lib/go/thrift/ |
D | binary_protocol.go | 273 size, e := p.ReadI32(ctx) 287 seqId, e = p.ReadI32(ctx) 305 seqId, e4 := p.ReadI32(ctx) 353 size32, e := p.ReadI32(ctx) 377 size32, e := p.ReadI32(ctx) 402 size32, e := p.ReadI32(ctx) 440 func (p *TBinaryProtocol) ReadI32(ctx context.Context) (value int32, err error) { func 462 size, e := p.ReadI32(ctx) 484 size, e := p.ReadI32(ctx)
|
D | protocol.go | 72 ReadI32(ctx context.Context) (value int32, err error) methodSpec 111 _, err = self.ReadI32(ctx)
|
D | json_protocol.go | 226 version, err := p.ReadI32(ctx) 243 if seqId, err = p.ReadI32(ctx); err != nil { 352 value, err := p.ReadI32(ctx) 366 func (p *TJSONProtocol) ReadI32(ctx context.Context) (int32, error) { func
|
D | application_exception.go | 164 if type_, err = iprot.ReadI32(ctx); err != nil {
|
D | header_protocol.go | 321 func (p *THeaderProtocol) ReadI32(ctx context.Context) (value int32, err error) { func 322 return p.protocol.ReadI32(ctx)
|
D | duplicate_protocol.go | 265 func (tdtp *TDuplicateToProtocol) ReadI32(ctx context.Context) (value int32, err error) { func 266 value, err = tdtp.Delegate.ReadI32(ctx)
|
D | serializer_types_test.go | 271 if v, err := iprot.ReadI32(ctx); err != nil { 388 if v, err := iprot.ReadI32(ctx); err != nil {
|
D | compact_protocol.go | 574 v, err := p.ReadI32(ctx) 579 func (p *TCompactProtocol) ReadI32(ctx context.Context) (value int32, err error) { func
|
D | debug_protocol.go | 390 func (tdp *TDebugProtocol) ReadI32(ctx context.Context) (value int32, err error) { func 391 value, err = tdp.Delegate.ReadI32(ctx)
|
D | json_protocol_test.go | 216 v, e := p.ReadI32(context.Background()) 610 ik, err := p.ReadI32(context.Background())
|
D | simple_json_protocol_test.go | 210 v, e := p.ReadI32(context.Background()) 234 v, e := p.ReadI32(context.Background())
|
D | simple_json_protocol.go | 361 if seqId, err = p.ReadI32(ctx); err != nil { 525 func (p *TSimpleJSONProtocol) ReadI32(ctx context.Context) (int32, error) { func
|
D | protocol_test.go | 400 value, err := p.ReadI32(context.Background())
|
/thrift-3.4.0/lib/delphi/src/ |
D | Thrift.Protocol.pas | 242 function ReadI32: Integer; in ReadI32() function 320 function ReadI32: Integer; virtual; abstract; in ReadI32() function 440 function ReadI32: Integer; override; in ReadI32() function 506 function ReadI32: Integer; override; in ReadI32() function 808 TType.I32 : prot.ReadI32(); 880 size := ReadI32; 930 function TBinaryProtocolImpl.ReadI32: Integer; in ReadI32() function 961 result.Count := ReadI32; 974 result.Count := ReadI32; 991 size := ReadI32; [all …]
|
D | Thrift.pas | 250 FExceptionType := TExceptionType( iprot.ReadI32 );
|
D | Thrift.Protocol.Compact.pas | 222 function ReadI32: Integer; override; 832 function TCompactProtocolImpl.ReadI32: Integer; in ReadI32() function
|
D | Thrift.Protocol.JSON.pas | 218 function ReadI32: Integer; override; 1220 function TJSONProtocolImpl.ReadI32 : LongInt; in TJSONProtocolImpl.ReadI32() function
|
/thrift-3.4.0/lib/go/test/tests/ |
D | required_fields_test.go | 94 protocol.EXPECT().ReadI32(context.Background()).Return(int32(1), nil), 118 protocol.EXPECT().ReadI32(context.Background()).Return(int32(1), nil),
|
D | protocol_mock.go | 159 func (m *MockTProtocol) ReadI32(arg0 context.Context) (int32, error) { func 168 func (mr *MockTProtocolMockRecorder) ReadI32(arg0 interface{}) *gomock.Call { func 170 …l.RecordCallWithMethodType(mr.mock, "ReadI32", reflect.TypeOf((*MockTProtocol)(nil).ReadI32), arg0)
|
D | client_error_test.go | 360 last = protocol.EXPECT().ReadI32(context.Background()).Return(int32(3), err).After(last) 608 …last = protocol.EXPECT().ReadI32(context.Background()).Return(int32(thrift.PROTOCOL_ERROR), err).A…
|
/thrift-3.4.0/lib/delphi/test/ |
D | TestClient.pas | 1171 Expect( prot.ReadI32 = TEST_LONG, 'WriteI32/ReadI32');
|