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

Method putLine

src/jrd/svc.cpp:465–476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

463}
464
465void Service::putLine(char tag, const char* val)
466{
467 const ULONG len = strlen(val) & 0xFFFF;
468
469 UCHAR buf[3];
470 buf[0] = tag;
471 buf[1] = len;
472 buf[2] = len >> 8;
473 enqueue(buf, sizeof buf);
474
475 enqueue(reinterpret_cast<const UCHAR*>(val), len);
476}
477
478void Service::putSLong(char tag, SLONG val)
479{

Callers 2

print_descriptionFunction · 0.45
listMethod · 0.45

Calls 1

enqueueFunction · 0.70

Tested by

no test coverage detected