Home
last modified time | relevance | path

Searched refs:newBuffer (Results 1 – 2 of 2) sorted by relevance

/thrift-3.4.0/lib/d/src/thrift/server/
Dnonblocking.d1056 auto newBuffer = cast(ubyte*)realloc(readBuffer_, newSize); in transition() local
1057 if (!newBuffer) onOutOfMemoryError(); in transition()
1059 readBuffer_ = newBuffer; in transition()
/thrift-3.4.0/lib/cpp/src/thrift/server/
DTNonblockingServer.cpp763 auto* newBuffer = (uint8_t*)std::realloc(readBuffer_, newSize); in transition() local
764 if (newBuffer == nullptr) { in transition()
768 readBuffer_ = newBuffer; in transition()