MCPcopy Create free account
hub / github.com/Tripwire/tripwire-open-source / CopyTo

Method CopyTo

src/twcrypto/bytequeue.cpp:195–199  ·  view source on GitHub ↗

////////////////////////////////////////////////////////////////////////// CopyTo -- note that this does not remove anything from the queue //////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

193// CopyTo -- note that this does not remove anything from the queue
194///////////////////////////////////////////////////////////////////////////////
195void cByteQueue::CopyTo(BufferedTransformation& target) const
196{
197 for (cByteQueueNode* current = head; current; current = current->next)
198 current->CopyTo(target);
199}
200
201void cByteQueue::CopyTo(byte* target) const
202{

Callers

nothing calls this directly

Calls 1

CurrentSizeMethod · 0.45

Tested by

no test coverage detected