Home
last modified time | relevance | path

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

/mcuboot-3.7.0/boot/boot_serial/src/
Dzcbor_bulk.c15 bool ok; in zcbor_map_decode_bulk() local
23 ok = true; in zcbor_map_decode_bulk()
30 ok = zcbor_tstr_decode(zsd, &key); in zcbor_map_decode_bulk()
32 while (ok && map_count < map_size) { in zcbor_map_decode_bulk()
63 if (!found && ok) { in zcbor_map_decode_bulk()
64 ok = zcbor_any_skip(zsd, NULL); in zcbor_map_decode_bulk()
66 } while (ok); in zcbor_map_decode_bulk()
Dboot_serial.c434 bool ok; local
451 ok = zcbor_map_decode_bulk(zsd, image_set_state_decode, ARRAY_SIZE(image_set_state_decode),
454 if (!ok) {
647 bool ok; local
669 ok = zcbor_map_decode_bulk(zsd, image_upload_decode, ARRAY_SIZE(image_upload_decode),
672 if (!ok) {
909 bool ok; local
920 ok = zcbor_tstr_decode(zsd, &key);
922 if (ok) {
924 ok = zcbor_tstr_decode(zsd, &value);
[all …]
/mcuboot-3.7.0/docs/
Dtestplan-zephyr.md51 ## Testing that mark ok works
Dreadme-zephyr.md126 the image to mark the primary slot as "image ok" before the next reboot,
/mcuboot-3.7.0/sim/src/
Dimage.rs2267 let mut ok = vec![dev.erased_val(); align]; in mark_permanent_upgrade() localVariable
2268 ok[0] = 1u8; in mark_permanent_upgrade()
2270 dev.write(off, &ok).unwrap(); in mark_permanent_upgrade()