/thrift-3.4.0/lib/delphi/src/ |
D | Thrift.Protocol.Multiplex.pas | 74 procedure WriteMessageBegin( const msg: TThriftMessage); override; procedure 89 procedure TMultiplexedProtocol.WriteMessageBegin( const msg: TThriftMessage); procedure 97 inherited WriteMessageBegin( newMsg); 101 inherited WriteMessageBegin( msg);
|
D | Thrift.Protocol.pas | 202 procedure WriteMessageBegin( const msg: TThriftMessage); procedure 281 procedure WriteMessageBegin( const msg: TThriftMessage); virtual; abstract; procedure 403 procedure WriteMessageBegin( const msg: TThriftMessage); override; procedure 467 procedure WriteMessageBegin( const msg: TThriftMessage); override; procedure 1161 procedure TBinaryProtocolImpl.WriteMessageBegin( const msg: TThriftMessage); procedure 1335 procedure TProtocolDecorator.WriteMessageBegin( const msg: TThriftMessage); procedure 1337 FWrappedProtocol.WriteMessageBegin( msg);
|
D | Thrift.Processor.Multiplex.pas | 162 oprot.WriteMessageBegin(newMsg);
|
D | Thrift.Protocol.Compact.pas | 159 procedure WriteMessageBegin( const msg: TThriftMessage); override; 355 procedure TCompactProtocolImpl.WriteMessageBegin( const msg: TThriftMessage); procedure
|
D | Thrift.Protocol.JSON.pas | 180 procedure WriteMessageBegin( const aMsg : TThriftMessage); override; 702 procedure TJSONProtocolImpl.WriteMessageBegin( const aMsg : TThriftMessage); procedure
|
/thrift-3.4.0/lib/go/thrift/ |
D | multiplexed_protocol.go | 71 func (t *TMultiplexedProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageT… func 73 return t.TProtocol.WriteMessageBegin(ctx, t.serviceName+MULTIPLEXED_SEPARATOR+name, typeId, seqid) 75 return t.TProtocol.WriteMessageBegin(ctx, name, typeId, seqid)
|
D | duplicate_protocol.go | 43 func (tdtp *TDuplicateToProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessa… func 44 err := tdtp.Delegate.WriteMessageBegin(ctx, name, typeId, seqid) 45 tdtp.DuplicateTo.WriteMessageBegin(ctx, name, typeId, seqid) 177 tdtp.DuplicateTo.WriteMessageBegin(ctx, name, typeId, seqid)
|
D | header_protocol.go | 130 func (p *THeaderProtocol) WriteMessageBegin(ctx context.Context, name string, typeID TMessageType, … func 138 return p.protocol.WriteMessageBegin(ctx, name, typeID, seqID) 245 if e := p.protocol.WriteMessageBegin(ctx, "", EXCEPTION, seqID); e != nil {
|
D | client.go | 44 if err := oprot.WriteMessageBegin(ctx, method, CALL, seqId); err != nil {
|
D | debug_protocol.go | 93 func (tdp *TDebugProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType,… func 94 err := tdp.Delegate.WriteMessageBegin(ctx, name, typeId, seqid) 97 tdp.DuplicateTo.WriteMessageBegin(ctx, name, typeId, seqid) 274 tdp.DuplicateTo.WriteMessageBegin(ctx, name, typeId, seqid)
|
D | protocol.go | 34 WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, seqid int32) error methodSpec
|
D | json_protocol.go | 59 func (p *TJSONProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, se… func
|
D | binary_protocol.go | 108 func (p *TBinaryProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, … func
|
D | compact_protocol.go | 157 func (p *TCompactProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType,… func
|
D | simple_json_protocol.go | 212 func (p *TSimpleJSONProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageTy… func
|
/thrift-3.4.0/lib/go/test/tests/ |
D | client_error_test.go | 58 …last := protocol.EXPECT().WriteMessageBegin(context.Background(), "testStruct", thrift.CALL, int32… 552 …last := protocol.EXPECT().WriteMessageBegin(context.Background(), "testString", thrift.CALL, int32… 722 protocol.EXPECT().WriteMessageBegin(context.Background(), "testString", thrift.CALL, int32(1)), 753 protocol.EXPECT().WriteMessageBegin(context.Background(), "testString", thrift.CALL, int32(1)), 782 protocol.EXPECT().WriteMessageBegin(context.Background(), "testString", thrift.CALL, int32(1)), 813 protocol.EXPECT().WriteMessageBegin(context.Background(), "testString", thrift.CALL, int32(1)), 842 protocol.EXPECT().WriteMessageBegin(context.Background(), "testString", thrift.CALL, int32(1)), 873 protocol.EXPECT().WriteMessageBegin(context.Background(), "testString", thrift.CALL, int32(1)),
|
D | protocol_mock.go | 594 func (m *MockTProtocol) WriteMessageBegin(arg0 context.Context, arg1 string, arg2 thrift.TMessageTy… func 602 func (mr *MockTProtocolMockRecorder) WriteMessageBegin(arg0, arg1, arg2, arg3 interface{}) *gomock.… func 604 …(mr.mock, "WriteMessageBegin", reflect.TypeOf((*MockTProtocol)(nil).WriteMessageBegin), arg0, arg1…
|
/thrift-3.4.0/ |
D | CHANGES.md | 591 …T-5294) - Go: TSimpleJSONProtocol could panic on WriteMessageEnd without matching WriteMessageBegin
|