Home
last modified time | relevance | path

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

/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c1284 boot_serial_in_dec(char *in, int inlen, char *out, int *out_off, int maxout) in boot_serial_in_dec() argument
1292 err = base64_decode( &out[*out_off], maxout - *out_off, &rc, in, inlen - 2); in boot_serial_in_dec()
1298 …err = base64_decode((unsigned char *)&out[*out_off], maxout - *out_off, &rc, (unsigned char *)in, … in boot_serial_in_dec()
1303 if (*out_off + base64_decode_len(in) >= maxout) { in boot_serial_in_dec()
1306 rc = base64_decode(in, &out[*out_off]); in boot_serial_in_dec()
1312 *out_off += rc; in boot_serial_in_dec()
1313 if (*out_off <= sizeof(uint16_t)) { in boot_serial_in_dec()
1318 if (len != *out_off - sizeof(uint16_t)) { in boot_serial_in_dec()
1333 *out_off -= sizeof(crc); in boot_serial_in_dec()
1334 out[*out_off] = '\0'; in boot_serial_in_dec()