/mcuboot-latest/boot/zcbor/include/ |
D | zcbor_decode.h | 226 #define zcbor_search_key_bstr_lit(state, str) zcbor_search_key_bstr_ptr(state, str, sizeof(str) - 1) argument 227 #define zcbor_search_key_tstr_lit(state, str) zcbor_search_key_tstr_ptr(state, str, sizeof(str) - 1) argument 228 #define zcbor_search_key_bstr_arr(state, str) zcbor_search_key_bstr_ptr(state, str, (sizeof(str))) argument 229 #define zcbor_search_key_tstr_arr(state, str) zcbor_search_key_tstr_ptr(state, str, (sizeof(str))) argument 374 #define zcbor_bstr_expect_lit(state, str) zcbor_bstr_expect_ptr(state, str, sizeof(str) - 1) argument 375 #define zcbor_tstr_expect_lit(state, str) zcbor_tstr_expect_ptr(state, str, sizeof(str) - 1) argument 376 #define zcbor_bstr_expect_arr(state, str) zcbor_bstr_expect_ptr(state, str, sizeof(str)) argument 377 #define zcbor_tstr_expect_arr(state, str) zcbor_tstr_expect_ptr(state, str, sizeof(str)) argument
|
D | zcbor_encode.h | 216 #define zcbor_bstr_put_lit(state, str) zcbor_bstr_encode_ptr(state, str, sizeof(str) - 1) argument 217 #define zcbor_tstr_put_lit(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str) - 1) argument 218 #define zcbor_bstr_put_arr(state, str) zcbor_bstr_encode_ptr(state, str, sizeof(str)) argument 219 #define zcbor_tstr_put_arr(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str)) argument
|
/mcuboot-latest/boot/espressif/port/esp32c3/ |
D | serial_adapter.c | 75 void console_write(const char *str, int cnt) in console_write() 101 int console_read(char *str, int cnt, int *newline) in console_read()
|
/mcuboot-latest/boot/espressif/port/esp32c6/ |
D | serial_adapter.c | 75 void console_write(const char *str, int cnt) in console_write() 101 int console_read(char *str, int cnt, int *newline) in console_read()
|
/mcuboot-latest/boot/espressif/port/esp32h2/ |
D | serial_adapter.c | 75 void console_write(const char *str, int cnt) in console_write() 101 int console_read(char *str, int cnt, int *newline) in console_read()
|
/mcuboot-latest/boot/espressif/port/esp32s3/ |
D | serial_adapter.c | 78 void console_write(const char *str, int cnt) in console_write() 104 int console_read(char *str, int cnt, int *newline) in console_read()
|
/mcuboot-latest/scripts/tests/ |
D | test_compression.py | 61 def test_lzma2_compression(tmpdir: Path, key_file: Path, compression: str, compressed: bool):
|
/mcuboot-latest/boot/espressif/port/esp32/ |
D | serial_adapter.c | 68 void console_write(const char *str, int cnt) in console_write() 79 int console_read(char *str, int cnt, int *newline) in console_read()
|
/mcuboot-latest/boot/espressif/port/esp32c2/ |
D | serial_adapter.c | 70 void console_write(const char *str, int cnt) in console_write() 87 int console_read(char *str, int cnt, int *newline) in console_read()
|
/mcuboot-latest/boot/espressif/port/esp32s2/ |
D | serial_adapter.c | 73 void console_write(const char *str, int cnt) in console_write() 90 int console_read(char *str, int cnt, int *newline) in console_read()
|
/mcuboot-latest/sim/tests/ |
D | core.rs | 190 fn dump_image(image: &Images, name: &str) { in dump_image()
|
/mcuboot-latest/boot/zephyr/ |
D | serial_adapter.c | 78 console_write(const char *str, int cnt) in console_write() 90 console_read(char *str, int str_size, int *newline) in console_read()
|
/mcuboot-latest/boot/bootutil/include/bootutil/ |
D | fault_injection_hardening.h | 280 #define FIH_LABEL(str, lin, cnt) __asm volatile ("FIH_LABEL_" str "_" #lin "_" #cnt "::" ::); argument 282 #define FIH_LABEL(str) do {} while (0) argument 284 #define FIH_LABEL(str) __asm volatile ("FIH_LABEL_" str "_%=:" ::); argument
|
/mcuboot-latest/boot/mynewt/src/ |
D | main.c | 70 boot_read(char *str, int cnt, int *newline) in boot_read()
|
/mcuboot-latest/sim/mcuboot-sys/src/ |
D | c.rs | 134 pub fn rsa_oaep_encrypt(pubkey: &[u8], seckey: &[u8]) -> Result<[u8; 256], &'static str> { in rsa_oaep_encrypt() 146 pub fn kw_encrypt(kek: &[u8], seckey: &[u8], keylen: u32) -> Result<Vec<u8>, &'static str> { in kw_encrypt()
|
/mcuboot-latest/boot/zcbor/src/ |
D | zcbor_encode.c | 317 bool zcbor_bstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len) 325 bool zcbor_tstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len) 333 bool zcbor_bstr_put_term(zcbor_state_t *state, char const *str, size_t maxlen) 339 bool zcbor_tstr_put_term(zcbor_state_t *state, char const *str, size_t maxlen)
|
D | zcbor_decode.c | 958 bool zcbor_search_key_bstr_term(zcbor_state_t *state, char const *str, size_t maxlen) 964 bool zcbor_search_key_tstr_term(zcbor_state_t *state, char const *str, size_t maxlen)
|
/mcuboot-latest/boot/mynewt/boot_uart/src/ |
D | boot_uart.c | 103 boot_uart_read(char *str, int cnt, int *newline) in boot_uart_read()
|
/mcuboot-latest/ext/tinycrypt/tests/ |
D | test_ecc_utils.c | 131 void string2scalar(unsigned int *scalar, unsigned int num_word32, char *str) in string2scalar()
|
/mcuboot-latest/sim/src/ |
D | image.rs | 1667 pub fn debug_dump(&self, prefix: &str) { in debug_dump()
|