MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / ClumpletReader

Method ClumpletReader

src/common/classes/ClumpletReader.cpp:114–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112namespace Firebird {
113
114ClumpletReader::ClumpletReader(Kind k, const UCHAR* buffer, FB_SIZE_T buffLen) :
115 kind(k), static_buffer(buffer), static_buffer_end(buffer + buffLen)
116{
117 rewind(); // this will set cur_offset and spbState
118}
119
120ClumpletReader::ClumpletReader(MemoryPool& pool, Kind k, const UCHAR* buffer, FB_SIZE_T buffLen) :
121 AutoStorage(pool), kind(k), static_buffer(buffer), static_buffer_end(buffer + buffLen)

Callers

nothing calls this directly

Calls 4

rewindFunction · 0.85
createFunction · 0.85
getBufferMethod · 0.45
getBufferEndMethod · 0.45

Tested by

no test coverage detected