MCPcopy Create free account
hub / github.com/MariaDB/server / append

Method append

plugin/handler_socket/libhsclient/string_buffer.hpp:93–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91 append(str, str + N - 1);
92 }
93 void append(const char *start, const char *finish) {
94 const size_t len = finish - start;
95 reserve(size() + len);
96 memcpy(buffer + end_offset, start, len);
97 end_offset += len;
98 }
99 void append_2(const char *s1, const char *f1, const char *s2,
100 const char *f2) {
101 const size_t l1 = f1 - s1;

Callers 15

append_string_jsonFunction · 0.45
parse_mysql_scalarFunction · 0.45
parse_array_or_objectFunction · 0.45
printMethod · 0.45
val_strMethod · 0.45
table_to_stringFunction · 0.45
send_reportFunction · 0.45
dbcb_resp_shortMethod · 0.45
dbcb_resp_entryMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected