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

Function my_b_write_byte

include/my_sys.h:583–591  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

581}
582
583static inline my_bool my_b_write_byte(IO_CACHE *info, uchar chr)
584{
585 MEM_CHECK_DEFINED(&chr, 1);
586 if (info->write_pos >= info->write_end)
587 if (my_b_flush_io_cache(info, 1))
588 return 1;
589 *info->write_pos++= chr;
590 return 0;
591}
592
593/**
594 Fill buffer of the cache.

Callers 10

save_toMethod · 0.85
save_toMethod · 0.85
save_to_fileMethod · 0.85
pretty_print_strFunction · 0.85
print_headerMethod · 0.85
my_b_write_quotedFunction · 0.85
my_b_write_bitFunction · 0.85
print_verbose_one_rowMethod · 0.85
printMethod · 0.85
save_to_fileMethod · 0.85

Calls 1

my_b_flush_io_cacheFunction · 0.85

Tested by

no test coverage detected