/mcuboot-latest/docs/release-notes.d/ |
D | compatible-slots.md | 1 - Added optional write block size checking to ensure expected 6 and write block sizes in dts vs actual hardware configuration
|
/mcuboot-latest/boot/boot_serial/include/boot_serial/ |
D | boot_serial.h | 37 void (*write)(const char *ptr, int cnt); member
|
/mcuboot-latest/boot/boot_serial/test/src/ |
D | boot_test.c | 49 .write = test_uart_write
|
/mcuboot-latest/scripts/imgtool/keys/ |
D | ed25519.py | 53 f.write(pem) 107 f.write(pem)
|
D | x25519.py | 55 f.write(pem) 108 f.write(pem)
|
D | general.py | 58 file.buffer.write(encoded_bytes) 61 file.write(encoded_bytes)
|
D | rsa.py | 65 f.write(pem) 165 f.write(pem)
|
D | ecdsa.py | 58 f.write(pem) 141 f.write(pem)
|
/mcuboot-latest/sim/simflash/src/ |
D | lib.rs | 56 fn write(&mut self, offset: usize, payload: &[u8]) -> Result<()>; in write() method 182 fn write(&mut self, offset: usize, payload: &[u8]) -> Result<()> { in write() method 334 flash.write(0, &[0x55]).unwrap(); in test_device() 347 flash.write(sector.base, &byte).unwrap(); in test_device() 348 flash.write(sector.base + sector.size - 1, &byte).unwrap(); in test_device()
|
/mcuboot-latest/ptest/src/ |
D | main.rs | 169 .write(true) in done() 335 write!(&mut buf, "{}:", self.env).unwrap(); in textual() 337 write!(&mut buf, " {}", v).unwrap(); in textual() 349 write!(&mut buf, " {}", v).unwrap(); in simple_textual()
|
/mcuboot-latest/boot/zephyr/boards/ |
D | nrf52840dk_ram.overlay | 38 write-block-size = <1>;
|
D | nrf52840dk_ram_multi.overlay | 46 write-block-size = <1>;
|
/mcuboot-latest/scripts/ |
D | assemble.py | 91 ofd.write(buf) 96 ofd.write(ibuf)
|
/mcuboot-latest/scripts/tests/ |
D | test_compression.py | 68 f.write(b"hello world\x00\x00\x00\x00\x00" * 64)
|
D | test_keys.py | 191 f.write(b"\x00" * 1024)
|
/mcuboot-latest/samples/compression_test/ |
D | independent_cmp.c | 70 write(lzma_fd, lzma_buf, lzma_stream_size); in main()
|
/mcuboot-latest/docs/ |
D | readme-nuttx.md | 21 …vers using standard POSIX filesystem operations (e.g. `open()` / `close()` / `read()` / `write()`). 45 …passes through the `BCH` and `FTL` layers, which appropriately handle the write alignment restrict… 52 …one task calls `flash_area_open` and another task calls `flash_area_<read/write/close>` passing th…
|
D | readme-mbed.md | 25 * Its minimum supported read and write sizes (granularities) are _no larger than_ 16 byte, which MC…
|
/mcuboot-latest/boot/zephyr/ |
D | CMakeLists.txt | 452 dt_prop(write_size_slot0 PATH "${slot0_flash}" PROPERTY "write-block-size") 470 dt_prop(write_size_slot1 PATH "${slot1_flash}" PROPERTY "write-block-size") 531 # Check both slots for the one with the largest write/erase block size 533 dt_prop(write_size_slot0 PATH "${slot0_flash}" PROPERTY "write-block-size") 535 dt_prop(write_size_slot1 PATH "${slot1_flash}" PROPERTY "write-block-size") 562 dt_prop(write_size PATH "${slot0_flash}" PROPERTY "write-block-size") 566 dt_prop(write_size PATH "${slot0_flash}" PROPERTY "write-block-size") 575 …message(WARNING "Unable to determine write size of slot0 or slot1 partition, setting to 8 (this is…
|
/mcuboot-latest/boot/mynewt/src/ |
D | main.c | 66 .write = boot_uart_write
|
/mcuboot-latest/boot/espressif/ |
D | main.c | 25 .write = console_write
|
/mcuboot-latest/sim/mcuboot-sys/ |
D | Cargo.toml | 93 # Support images with 32-byte maximum write alignment value.
|
/mcuboot-latest/sim/src/ |
D | image.rs | 1936 dev.write(offset, &encbuf).unwrap(); in install_image() 1948 dev.write(offset, &buf).unwrap(); in install_image() 1960 dev.write(offset, &buf).unwrap(); in install_image() 1970 dev.write(offset, &encbuf).unwrap(); in install_image() 2205 write!(&mut buf, "mcuboot\0").unwrap(); in install_ptable() 2226 dev.write(0, &buf).unwrap(); in install_ptable() 2296 dev.write(offset - (offset % align), &buf).unwrap(); in mark_upgrade() 2298 dev.write(offset, MAGIC).unwrap(); in mark_upgrade() 2317 dev.write(off, &ok).unwrap(); in mark_permanent_upgrade()
|
/mcuboot-latest/ci/fih_test_docker/ |
D | damage_image.py | 203 file_to_damage.write(out_file_content)
|
/mcuboot-latest/boot/boot_serial/src/ |
D | boot_serial.c | 1420 boot_uf->write(pkt_start, sizeof(pkt_start)); in boot_serial_output() 1422 boot_uf->write(pkt_cont, sizeof(pkt_cont)); in boot_serial_output() 1426 boot_uf->write(&encoded_buf[out], len); in boot_serial_output() 1430 boot_uf->write("\n", 1); in boot_serial_output()
|