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

Method putSLong

src/jrd/svc.cpp:478–487  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

476}
477
478void Service::putSLong(char tag, SLONG val)
479{
480 UCHAR buf[5];
481 buf[0] = tag;
482 buf[1] = val;
483 buf[2] = val >> 8;
484 buf[3] = val >> 16;
485 buf[4] = val >> 24;
486 enqueue(buf, sizeof buf);
487}
488
489void Service::putSInt64(char tag, SINT64 val)
490{

Callers 3

TDR_list_limboFunction · 0.45
print_descriptionFunction · 0.45
listMethod · 0.45

Calls 1

enqueueFunction · 0.70

Tested by

no test coverage detected