MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / getByte

Method getByte

GPRS/ByteVector.h:271–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269 void appendUInt16(unsigned value) { BVASSERT(bitind()==0); setUInt16(grow(2),value); }
270 void appendUInt32(unsigned value) { BVASSERT(bitind()==0); setUInt32(grow(4),value); }
271 ByteType getByte(size_t ind) const { BVASSERT(ind < size()); return mStart[ind]; }
272 ByteType getNibble(size_t ind,int hi) const {
273 ByteType val = getByte(ind); return hi ? (val>>4) : val & 0xf;
274 }

Callers 15

ByteVector.cppFile · 0.80
ByteVectorTestFunction · 0.80
qosReadMethod · 0.80
gprsTestFunction · 0.80
BSSGDownlinkParseFunction · 0.80
BSSGDownlinkMessageParseFunction · 0.80
parseDLUnitDataBodyMethod · 0.80
dumpvalMethod · 0.80
dumpOTMethod · 0.80
dumpOTVMethod · 0.80
dumpOTLVMethod · 0.80
L3GprsMsgType2NameFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected