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

Function xmlencode_print

client/mysql.cc:4457–4473  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4455
4456
4457static void
4458xmlencode_print(const char *src, uint length)
4459{
4460 if (!src)
4461 tee_fputs("NULL", PAGER);
4462 else
4463 {
4464 for (const char *p = src; length; p++, length--)
4465 {
4466 const char *t;
4467 if ((t = array_value(xmlmeta, *p)))
4468 tee_fputs(t, PAGER);
4469 else
4470 tee_putc(*p, PAGER);
4471 }
4472 }
4473}
4474
4475
4476static void

Callers 2

print_table_data_htmlFunction · 0.85
print_table_data_xmlFunction · 0.85

Calls 3

tee_fputsFunction · 0.85
array_valueFunction · 0.85
tee_putcFunction · 0.85

Tested by

no test coverage detected