MCPcopy Index your code
hub / github.com/crosspoint-reader/crosspoint-reader / write

Method write

lib/hal/HalStorage.cpp:160–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158int HalFile::read(void* buf, size_t count) { HAL_FILE_WRAPPED_CALL(read, buf, count); }
159int HalFile::read() { HAL_FILE_WRAPPED_CALL(read, ); }
160size_t HalFile::write(const void* buf, size_t count) { HAL_FILE_WRAPPED_CALL(write, buf, count); }
161size_t HalFile::write(uint8_t b) { HAL_FILE_WRAPPED_CALL(write, b); }
162bool HalFile::rename(const char* newPath) { HAL_FILE_WRAPPED_CALL(rename, newPath); }
163bool HalFile::isDirectory() const { HAL_FILE_FORWARD_CALL(isDirectory, ); } // already thread-safe, no need to wrap

Callers 15

generateCoverBmpMethod · 0.45
generateThumbBmpMethod · 0.45
write16Function · 0.45
write32Function · 0.45
write32SignedFunction · 0.45
writeBmpHeader8bitFunction · 0.45
writeBmpHeader1bitFunction · 0.45
writeBmpHeader2bitFunction · 0.45
generateCoverBmpMethod · 0.45
checkPanicFunction · 0.45
writeRegMethod · 0.45

Calls

no outgoing calls

Tested by 10

write_bmp_file_headerFunction · 0.36
write_bmp_dib_headerFunction · 0.36
write_paletteFunction · 0.36
generate_1bitFunction · 0.36
generate_2bitFunction · 0.36
generate_4bitFunction · 0.36
generate_8bit_4colorsFunction · 0.36
generate_8bit_256colorsFunction · 0.36
generate_24bitFunction · 0.36