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

Method putString

src/jrd/replication/Replicator.h:125–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123 }
124
125 void putString(const Firebird::string& str)
126 {
127 const auto length = str.length();
128 putInt32(length);
129 const auto ptr = (const UCHAR*) str.c_str();
130 buffer->add(ptr, length);
131 }
132
133 void putBinary(ULONG length, const UCHAR* data)
134 {

Callers 1

executeSqlIntlMethod · 0.80

Calls 3

lengthMethod · 0.45
c_strMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected