Home
last modified time | relevance | path

Searched refs:WriteMessageBegin (Results 1 – 18 of 18) sorted by relevance

/thrift-3.4.0/lib/delphi/src/
DThrift.Protocol.Multiplex.pas74 procedure WriteMessageBegin( const msg: TThriftMessage); override; procedure
89 procedure TMultiplexedProtocol.WriteMessageBegin( const msg: TThriftMessage); procedure
97 inherited WriteMessageBegin( newMsg);
101 inherited WriteMessageBegin( msg);
DThrift.Protocol.pas202 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);
DThrift.Processor.Multiplex.pas162 oprot.WriteMessageBegin(newMsg);
DThrift.Protocol.Compact.pas159 procedure WriteMessageBegin( const msg: TThriftMessage); override;
355 procedure TCompactProtocolImpl.WriteMessageBegin( const msg: TThriftMessage); procedure
DThrift.Protocol.JSON.pas180 procedure WriteMessageBegin( const aMsg : TThriftMessage); override;
702 procedure TJSONProtocolImpl.WriteMessageBegin( const aMsg : TThriftMessage); procedure
/thrift-3.4.0/lib/go/thrift/
Dmultiplexed_protocol.go71 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)
Dduplicate_protocol.go43 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)
Dheader_protocol.go130 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 {
Dclient.go44 if err := oprot.WriteMessageBegin(ctx, method, CALL, seqId); err != nil {
Ddebug_protocol.go93 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)
Dprotocol.go34 WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, seqid int32) error methodSpec
Djson_protocol.go59 func (p *TJSONProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, se… func
Dbinary_protocol.go108 func (p *TBinaryProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, … func
Dcompact_protocol.go157 func (p *TCompactProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType,… func
Dsimple_json_protocol.go212 func (p *TSimpleJSONProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageTy… func
/thrift-3.4.0/lib/go/test/tests/
Dclient_error_test.go58 …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)),
Dprotocol_mock.go594 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/
DCHANGES.md591 …T-5294) - Go: TSimpleJSONProtocol could panic on WriteMessageEnd without matching WriteMessageBegin