/thrift-3.4.0/lib/cpp/src/thrift/ |
D | TDispatchProcessor.h | 54 protocol::TMessageType mtype; in process() local 56 inRaw->readMessageBegin(fname, mtype, seqid); in process() 63 if (mtype != protocol::T_CALL && mtype != protocol::T_ONEWAY) { in process() 64 GlobalOutput.printf("received invalid message type %d from client", mtype); in process() 74 protocol::TMessageType mtype; in processFast() local 76 in->readMessageBegin(fname, mtype, seqid); in processFast() 78 if (mtype != protocol::T_CALL && mtype != protocol::T_ONEWAY) { in processFast() 79 GlobalOutput.printf("received invalid message type %d from client", mtype); in processFast() 112 protocol::TMessageType mtype; in process() local 114 in->readMessageBegin(fname, mtype, seqid); in process() [all …]
|
/thrift-3.4.0/lib/cpp/src/thrift/async/ |
D | TAsyncDispatchProcessor.h | 55 protocol::TMessageType mtype; in process() local 57 inRaw->readMessageBegin(fname, mtype, seqid); in process() 64 if (mtype != protocol::T_CALL && mtype != protocol::T_ONEWAY) { in process() 65 GlobalOutput.printf("received invalid message type %d from client", mtype); in process() 77 protocol::TMessageType mtype; in processFast() local 79 in->readMessageBegin(fname, mtype, seqid); in processFast() 81 if (mtype != protocol::T_CALL && mtype != protocol::T_ONEWAY) { in processFast() 82 GlobalOutput.printf("received invalid message type %d from client", mtype); in processFast() 116 protocol::TMessageType mtype; in process() local 118 inRaw->readMessageBegin(fname, mtype, seqid); in process() [all …]
|
D | TConcurrentClientSyncInfo.cpp | 50 ::apache::thrift::protocol::TMessageType &mtype, in getPending() argument 61 mtype = mtypePending_; in getPending() 69 ::apache::thrift::protocol::TMessageType mtype, in updatePending() argument 75 mtypePending_ = mtype; in updatePending()
|
D | TConcurrentClientSyncInfo.h | 72 ::apache::thrift::protocol::TMessageType& mtype, 76 ::apache::thrift::protocol::TMessageType mtype,
|
/thrift-3.4.0/lib/perl/lib/Thrift/ |
D | MultiplexedProcessor.pm | 38 my $mtype = shift; 43 $self->{mtype} = $mtype; 57 $$type = $self->{mtype}; 100 my ($fname, $mtype, $rseqid); 101 $input->readMessageBegin(\$fname, \$mtype, \$rseqid); 103 if ($mtype ne Thrift::TMessageType::CALL && $mtype ne Thrift::TMessageType::ONEWAY) { 111 Thrift::StoredMessageProtocol->new($input, $fname, $mtype, $rseqid), $output 129 Thrift::StoredMessageProtocol->new($input, $messageName, $mtype, $rseqid), $output
|
/thrift-3.4.0/lib/php/lib/ |
D | TMultiplexedProcessor.php | 93 $input->readMessageBegin($fname, $mtype, $rseqid); 95 if ($mtype !== TMessageType::CALL && $mtype != TMessageType::ONEWAY) { 114 new StoredMessageProtocol($input, $messageName, $mtype, $rseqid),
|
D | StoredMessageProtocol.php | 39 public function __construct(TProtocol $protocol, $fname, $mtype, $rseqid) argument 43 $this->mtype_ = $mtype;
|
/thrift-3.4.0/lib/nodejs/lib/thrift/ |
D | multiplexed_processor.js | 34 if (begin.mtype != Thrift.MessageType.CALL && begin.mtype != Thrift.MessageType.ONEWAY) { 57 mtype: begin.mtype,
|
D | connection.js | 141 client['recv_' + header.fname](message, header.mtype, dummy_seqid); 360 client['recv_' + header.fname](message, header.mtype, dummy_seqid);
|
D | ohos_connection.js | 149 client['recv_' + header.fname](proto, header.mtype, dummy_seqid);
|
D | ws_connection.js | 164 client['recv_' + header.fname](proto, header.mtype, dummy_seqid);
|
/thrift-3.4.0/lib/rb/lib/thrift/ |
D | client.rb | 54 fname, mtype, rseqid = @iprot.read_message_begin 55 [fname, mtype, rseqid] 70 def handle_exception(mtype) argument 71 if mtype == MessageTypes::EXCEPTION
|
/thrift-3.4.0/lib/c_glib/src/thrift/c_glib/processor/ |
D | thrift_dispatch_processor.c | 35 ThriftMessageType mtype; in G_DEFINE_ABSTRACT_TYPE() local 43 &mtype, in G_DEFINE_ABSTRACT_TYPE() 50 else if (mtype != T_CALL && mtype != T_ONEWAY) { in G_DEFINE_ABSTRACT_TYPE() 51 g_warning ("received invalid message type %d from client", mtype); in G_DEFINE_ABSTRACT_TYPE()
|
/thrift-3.4.0/lib/cpp/src/thrift/processor/ |
D | PeekProcessor.cpp | 69 TMessageType mtype; in process() local 71 in->readMessageBegin(fname, mtype, seqid); in process() 73 if (mtype != T_CALL && mtype != T_ONEWAY) { in process()
|
D | StatsProcessor.h | 48 apache::thrift::protocol::TMessageType mtype; in process() local 51 piprot_->readMessageBegin(fname, mtype, seqid); in process() 52 if (mtype != apache::thrift::protocol::T_CALL && mtype != apache::thrift::protocol::T_ONEWAY) { in process()
|
/thrift-3.4.0/lib/cpp/src/thrift/protocol/ |
D | TDebugProtocol.cpp | 177 string mtype; in writeMessageBegin() local 180 mtype = "call"; in writeMessageBegin() 183 mtype = "reply"; in writeMessageBegin() 186 mtype = "exn"; in writeMessageBegin() 189 mtype = "oneway"; in writeMessageBegin() 193 uint32_t size = writeIndented("(" + mtype + ") " + name + "("); in writeMessageBegin()
|
/thrift-3.4.0/test/features/ |
D | string_limit.py | 25 _, mtype, _ = proto.readMessageBegin() 26 assert mtype == TMessageType.REPLY
|
D | theader_binary.py | 24 _, mtype, _ = proto.readMessageBegin() 25 assert mtype == TMessageType.REPLY
|
D | container_limit.py | 29 _, mtype, _ = proto.readMessageBegin() 30 assert mtype == TMessageType.REPLY
|
/thrift-3.4.0/lib/c_glib/src/thrift/c_glib/protocol/ |
D | thrift_stored_message_protocol.c | 59 *message_type = self->mtype; in thrift_stored_message_protocol_read_message_begin() 80 self->mtype = g_value_get_int (value); in thrift_stored_message_protocol_set_property()
|
D | thrift_stored_message_protocol.h | 59 ThriftMessageType mtype; member
|
/thrift-3.4.0/lib/rb/spec/ |
D | client_spec.rb | 84 fname, mtype, sqeid = @client.receive_message_begin() 85 expect { @client.handle_exception(mtype) }.to raise_error(StandardError)
|
/thrift-3.4.0/lib/nodejs/test/ |
D | header.test.js | 52 assert.equals(result.mtype, thrift.Thrift.MessageType.CALL);
|
/thrift-3.4.0/lib/ts/ |
D | thrift.d.ts | 549 readMessageBegin(): { fname: string; mtype: number; rseqid: number };
|
/thrift-3.4.0/lib/py/src/transport/ |
D | TTwisted.py | 101 (fname, mtype, rseqid) = iprot.readMessageBegin() 109 method(iprot, mtype, rseqid)
|