Lines Matching full:in
7 * "License"); you may not use this file except in compliance
12 * Unless required by applicable law or agreed to in writing,
45 std::shared_ptr<TTransport> PeekProcessor::getPipedTransport(std::shared_ptr<TTransport> in) { in getPipedTransport() argument
46 return transportFactory_->getTransport(in); in getPipedTransport()
64 bool PeekProcessor::process(std::shared_ptr<TProtocol> in, in process() argument
71 in->readMessageBegin(fname, mtype, seqid); in process()
83 in->readFieldBegin(fname, ftype, fid); in process()
89 peek(in, ftype, fid); in process()
90 in->readFieldEnd(); in process()
92 in->readMessageEnd(); in process()
93 in->getTransport()->readEnd(); in process()
96 // All the data is now in memoryBuffer_ and ready to be processed in process()
99 // Let's first take a peek at the full data in memory in process()
122 void PeekProcessor::peek(std::shared_ptr<TProtocol> in, TType ftype, int16_t fid) { in peek() argument
124 in->skip(ftype); in peek()