Home
last modified time | relevance | path

Searched refs:readByte (Results 1 – 25 of 92) sorted by relevance

1234

/thrift-3.4.0/lib/lua/
DTBinaryProtocol.lua147 ttype = self:readByte()
164 local ttype = self:readByte()
176 local ktype = self:readByte()
177 local vtype = self:readByte()
186 local etype = self:readByte()
195 local etype = self:readByte()
204 local byte = self:readByte()
211 function TBinaryProtocol:readByte()
/thrift-3.4.0/lib/nodejs/lib/thrift/
Dbinary_protocol.js194 type = this.readByte();
211 var type = this.readByte();
223 var ktype = this.readByte();
224 var vtype = this.readByte();
233 var etype = this.readByte();
242 var etype = this.readByte();
251 var b = this.readByte();
258 TBinaryProtocol.prototype.readByte = function() { method in TBinaryProtocol
259 return this.trans.readByte();
313 this.readByte();
Dcompact_protocol.js578 var protocolId = this.trans.readByte();
584 var versionAndType = this.trans.readByte();
615 var b = this.trans.readByte(b);
657 kvType = this.trans.readByte();
669 var size_and_type = this.trans.readByte();
702 var res = this.trans.readByte();
709 TCompactProtocol.prototype.readByte = function() { method in TCompactProtocol
710 return this.trans.readByte();
809 var b = this.trans.readByte();
861 this.readByte();
Dframed_transport.js101 TFramedTransport.prototype.readByte = function() { method in TFramedTransport
103 return binary.readByte(this.inBuf[this.readPos++]);
Dbuffered_transport.js112 TBufferedTransport.prototype.readByte = function() { method in TBufferedTransport
114 return binary.readByte(this.inBuf[this.readCursor++]);
/thrift-3.4.0/lib/javame/src/org/apache/thrift/protocol/
DTBinaryProtocol.java204 message.type = readByte(); in readMessageBegin()
220 field.type = readByte(); in readFieldBegin()
231 map.keyType = readByte(); in readMapBegin()
232 map.valueType = readByte(); in readMapBegin()
241 list.elemType = readByte(); in readListBegin()
250 set.elemType = readByte(); in readSetBegin()
258 return (readByte() == 1); in readBool()
262 public byte readByte() throws TException { in readByte() method in TBinaryProtocol
/thrift-3.4.0/lib/py/src/protocol/
DTBinaryProtocol.py149 type = self.readByte()
163 type = self.readByte()
173 ktype = self.readByte()
174 vtype = self.readByte()
183 etype = self.readByte()
192 etype = self.readByte()
201 byte = self.readByte()
206 def readByte(self): member in TBinaryProtocol
/thrift-3.4.0/lib/php/lib/Protocol/
DTBinaryProtocol.php246 $this->readByte($type) +
273 $result = $this->readByte($fieldType);
292 $this->readByte($keyType) +
293 $this->readByte($valType) +
305 $this->readByte($elemType) +
317 $this->readByte($elemType) +
335 public function readByte(&$value) function in Thrift\\Protocol\\TBinaryProtocol
DTProtocolDecorator.php256 public function readByte(&$byte) function in Thrift\\Protocol\\TProtocolDecorator
258 return $this->concreteProtocol_->readByte($byte);
/thrift-3.4.0/lib/perl/lib/Thrift/
DBinaryProtocol.pm270 $self->readByte($type) +
302 my $result = $self->readByte($fieldType);
325 $self->readByte($keyType) +
326 $self->readByte($valType) +
342 $self->readByte($elemType) +
358 $self->readByte($elemType) +
379 sub readByte subroutine
/thrift-3.4.0/lib/d/src/thrift/protocol/
Dbinary.d201 return readByte() != 0; in readBool()
204 byte readByte() { in readByte() function
267 msg.type = cast(TMessageType)(readByte()); in readMessageBegin()
284 f.type = cast(TType)readByte(); in readFieldBegin()
292 return TList(cast(TType)readByte(), readSize(containerSizeLimit)); in readListBegin()
297 return TMap(cast(TType)readByte(), cast(TType)readByte(), in readMapBegin()
303 return TSet(cast(TType)readByte(), readSize(containerSizeLimit)); in readSetBegin()
Dcompact.d201 return readByte() == CType.BOOLEAN_TRUE; in readBool()
204 byte readByte() { in readByte() function
249 auto protocolId = readByte(); in readMessageBegin()
255 auto versionAndType = readByte(); in readMessageBegin()
285 auto bite = readByte(); in readFieldBegin()
319 auto sizeAndType = readByte(); in readListBegin()
341 kvType = readByte(); in readMapBegin()
354 auto sizeAndType = readByte(); in readSetBegin()
/thrift-3.4.0/lib/nodejs/test/
Dbinary.test.js25 assert.equal(1, binary.readByte(0x01));
26 assert.equal(-1, binary.readByte(0xff));
28 assert.equal(127, binary.readByte(0x7f));
29 assert.equal(-128, binary.readByte(0x80));
/thrift-3.4.0/lib/go/thrift/
Drich_transport.go37 return readByte(r.TTransport)
52 func readByte(r io.Reader) (c byte, err error) { func
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/protocol/
DTBinaryProtocol.java284 return new TMessage(readStringBody(size), readByte(), readI32()); in readMessageBegin()
301 byte type = readByte(); in readFieldBegin()
311 TMap map = new TMap(readByte(), readByte(), readI32()); in readMapBegin()
323 TList list = new TList(readByte(), readI32()); in readListBegin()
335 TSet set = new TSet(readByte(), readI32()); in readSetBegin()
347 return (readByte() == 1); in readBool()
351 public byte readByte() throws TException { in readByte() method in TBinaryProtocol
561 byte type = this.readByte(); in readFieldBeginData()
DTCompactProtocol.java489 byte protocolId = readByte(); in readMessageBegin()
497 byte versionAndType = readByte(); in readMessageBegin()
532 byte type = readByte(); in readFieldBegin()
572 byte keyAndValueType = size == 0 ? 0 : readByte(); in readMapBegin()
589 byte size_and_type = readByte(); in readListBegin()
621 return readByte() == Types.BOOLEAN_TRUE; in readBool()
626 public byte readByte() throws TException { in readByte() method in TCompactProtocol
788 byte b = readByte(); in readVarint32()
818 byte b = readByte(); in readVarint64()
DTReadProtocol.java35 byte readByte() throws TException; in readByte() method
/thrift-3.4.0/lib/dart/lib/src/protocol/
Dt_binary_protocol.dart207 type = readByte();
227 int type = readByte();
238 int keyType = readByte();
239 int valueType = readByte();
250 int elementType = readByte();
261 int elementType = readByte();
271 bool readBool() => readByte() == 1;
276 int readByte() {
Dt_compact_protocol.dart276 int protocolId = readByte();
281 int versionAndType = readByte();
311 int type = readByte();
341 int keyAndValueType = length == 0 ? 0 : readByte();
352 int lengthAndType = readByte();
381 return readByte() == TYPE_BOOLEAN_TRUE;
385 int readByte() {
436 Int32 b = Int32(readByte());
448 Int64 b = Int64(readByte());
/thrift-3.4.0/lib/ocaml/src/
DTBinaryProtocol.ml111 method readByte = method in t
126 self#readByte = 1
146 let t = (vt (self#readByte))
153 let kt = vt (self#readByte) in
154 let vt = vt (self#readByte) in
158 let t = vt (self#readByte) in
162 let t = vt (self#readByte) in
/thrift-3.4.0/lib/haxe/src/org/apache/thrift/protocol/
DTBinaryProtocol.hx192 return new TMessage(readStringBody(size), readByte(), readI32());
205 var type : Int = readByte();
217 var map = new TMap(readByte(), readByte(), readI32());
225 var list = new TList(readByte(), readI32());
233 var set = new TSet(readByte(), readI32());
241 return (readByte() == 1);
245 public function readByte() : Int { method
250 return inp.readByte();
/thrift-3.4.0/lib/py/src/ext/
Dbinary.h165 if (!readByte(b) || !readI32(len) || !checkLengthLimit(len, containerLimit())) { in readListBegin()
175 if (!readByte(k) || !readByte(v) || !readI32(len) || !checkLengthLimit(len, containerLimit())) { in readMapBegin()
Dbinary.cpp28 if (!readByte(b)) { in readFieldBegin()
/thrift-3.4.0/lib/cpp/src/thrift/protocol/
DTBinaryProtocol.tcc225 result += readByte(type); in readMessageBegin()
256 result += readByte(type); in readFieldBegin()
278 result += readByte(k); in readMapBegin()
280 result += readByte(v); in readMapBegin()
306 result += readByte(e); in readListBegin()
332 result += readByte(e); in readSetBegin()
362 uint32_t TBinaryProtocolT<Transport_, ByteOrder_>::readByte(int8_t& byte) { in readByte() function in apache::thrift::protocol::TBinaryProtocolT
DTCompactProtocol.tcc428 rsize += readByte(protocolId); in readMessageBegin()
433 rsize += readByte(versionAndType); in readMessageBegin()
481 rsize += readByte(byte); in readFieldBegin()
530 rsize += readByte(kvType); in readMapBegin()
561 rsize += readByte(size_and_type); in readListBegin()
608 readByte(val); in readBool()
618 uint32_t TCompactProtocolT<Transport_>::readByte(int8_t& byte) { in readByte() function in apache::thrift::protocol::TCompactProtocolT

1234