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

Function read_token

libhsclient/escape.hpp:36–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36inline void
37read_token(char *& start, char *finish)
38{
39 char *const p = memchr_char(start, '\t', finish - start);
40 if (p == 0) {
41 start = finish;
42 } else {
43 start = p;
44 }
45}
46
47inline void
48skip_token_delim_fold(char *& start, char *finish)

Callers 7

execute_lineMethod · 0.85
do_open_indexMethod · 0.85
do_exec_on_indexMethod · 0.85
do_authorizationMethod · 0.85
response_recvMethod · 0.85
get_next_rowMethod · 0.85
read_ui32Function · 0.85

Calls 1

memchr_charFunction · 0.85

Tested by

no test coverage detected