MCPcopy Create free account
hub / github.com/DeNA/HandlerSocket-Plugin-for-MySQL / append

Method append

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 7

init_threadMethod · 0.80
dbcb_resp_shortMethod · 0.80
dbcb_resp_entryMethod · 0.80
request_buf_authMethod · 0.80
append_delim_valueFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected