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

Function write_ui32

libhsclient/escape.cpp:106–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106void
107write_ui32(string_buffer& buf, uint32_t v)
108{
109 char *wp = buf.make_space(12);
110 int len = snprintf(wp, 12, "%u", v);
111 if (len > 0) {
112 buf.space_wrote(len);
113 }
114}
115
116void
117write_ui64(string_buffer& buf, uint64_t v)

Callers 4

dbcb_resp_shortMethod · 0.85
dbcb_resp_short_numMethod · 0.85
dbcb_resp_short_num64Method · 0.85
dbcb_resp_beginMethod · 0.85

Calls 2

make_spaceMethod · 0.80
space_wroteMethod · 0.80

Tested by

no test coverage detected