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

Method Get

src/cryptlib/queue.cpp:68–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68unsigned int ByteQueueNode::Get(byte &outByte)
69{
70 if (tail==head)
71 return 0;
72
73 outByte=buf[head++];
74 return 1;
75}
76
77unsigned int ByteQueueNode::Get(byte *outString, unsigned int getMax)
78{

Callers 5

BERDecodeMethod · 0.45
BERLengthDecodeFunction · 0.45
BERSequenceDecoderMethod · 0.45
NEXTBYTEMethod · 0.45
ExtractFunction · 0.45

Calls 1

UsedUpMethod · 0.45

Tested by

no test coverage detected