Home
last modified time | relevance | path

Searched refs:totlen (Results 1 – 1 of 1) sorted by relevance

/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c1367 uint16_t totlen; in boot_serial_output() local
1370 char buf[BOOT_SERIAL_OUT_MAX + sizeof(*bs_hdr) + sizeof(crc) + sizeof(totlen)]; in boot_serial_output()
1394 totlen = len + sizeof(*bs_hdr) + sizeof(crc); in boot_serial_output()
1395 totlen = htons(totlen); in boot_serial_output()
1397 memcpy(buf, &totlen, sizeof(totlen)); in boot_serial_output()
1398 totlen = sizeof(totlen); in boot_serial_output()
1399 memcpy(&buf[totlen], bs_hdr, sizeof(*bs_hdr)); in boot_serial_output()
1400 totlen += sizeof(*bs_hdr); in boot_serial_output()
1401 memcpy(&buf[totlen], data, len); in boot_serial_output()
1402 totlen += len; in boot_serial_output()
[all …]