/mcuboot-3.7.0/ptest/ |
D | Cargo.lock | 6 name = "addr2line" 15 name = "adler" 21 name = "aho-corasick" 30 name = "atty" 41 name = "autocfg" 47 name = "backtrace" 62 name = "bitflags" 68 name = "cc" 74 name = "cfg-if" 80 name = "chrono" [all …]
|
D | Cargo.toml | 2 name = "ptest"
|
/mcuboot-3.7.0/ |
D | Cargo.lock | 6 name = "aes" 19 name = "aho-corasick" 28 name = "atty" 39 name = "base64" 45 name = "bootsim" 68 name = "bumpalo" 74 name = "byteorder" 80 name = "cc" 86 name = "cfg-if" 92 name = "cipher" [all …]
|
/mcuboot-3.7.0/scripts/imgtool/keys/ |
D | __init__.py | 79 if pk.curve.name not in ('secp256r1', 'secp384r1'): 80 raise Exception("Unsupported EC curve: " + pk.curve.name) 83 if pk.curve.name == 'secp256r1': 85 elif pk.curve.name == 'secp384r1': 88 if pk.curve.name not in ('secp256r1', 'secp384r1'): 89 raise Exception("Unsupported EC curve: " + pk.curve.name) 92 if pk.curve.name == 'secp256r1': 94 elif pk.curve.name == 'secp384r1':
|
D | ed25519.py | 25 def _unsupported(self, name): argument 26 raise Ed25519UsageError("Operation {} requires private key".format(name))
|
D | x25519.py | 26 def _unsupported(self, name): argument 27 raise X25519UsageError("Operation {} requires private key".format(name))
|
D | rsa.py | 36 def _unsupported(self, name): argument 37 raise RSAUsageError("Operation {} requires private key".format(name))
|
D | ecdsa.py | 29 def _unsupported(self, name): argument 30 raise ECDSAUsageError("Operation {} requires private key".format(name))
|
/mcuboot-3.7.0/boot/zephyr/include/boot_serial/ |
D | boot_serial_extensions.h | 36 #define MCUMGR_HANDLER_DEFINE(name, _handler) \ argument 37 STRUCT_SECTION_ITERABLE(mcuboot_bs_custom_handlers, name) = { \
|
/mcuboot-3.7.0/samples/zephyr/ |
D | test-compile.go | 73 name := *outFile 74 file, err := os.OpenFile(name, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0644) 111 for _, name := range []string{ 116 err = b.add(testName, name, name)
|
D | run-tests.go | 219 func NewExtractor(name string) (*Extractor, error) { 220 f, err := os.Open(name)
|
/mcuboot-3.7.0/sim/tests/ |
D | core.rs | 28 ($name:ident, $arg: ident, $body:expr) => { 30 fn $name() { 42 ($name:ident, $maker:ident($($margs:expr),*), $test:ident($($targs:expr),*)) => { 43 test_shell!($name, r, { 45 dump_image(&image, stringify!($name)); 190 fn dump_image(image: &Images, name: &str) { in dump_image() 193 req == "all" || name.contains(req) in dump_image() 196 let full_name = format!("{}-{:04}", name, count); in dump_image()
|
/mcuboot-3.7.0/ext/tinycrypt/tests/include/ |
D | test_ecc_utils.h | 84 int check_ecc_result(const int num, const char *name, 95 int check_code(const int num, const char *name, const int expected,
|
D | test_utils.h | 68 #define TC_START(name) PRINT_DATA("tc_start() - %s\n", name) argument
|
/mcuboot-3.7.0/ext/tinycrypt/tests/ |
D | test_ecc_utils.c | 184 int check_ecc_result(const int num, const char *name, in check_ecc_result() argument 191 TC_PRINT("\n Vector #%02d check %s - FAILURE:\n\n", num, name); in check_ecc_result() 198 TC_PRINT(" Vector #%02d check %s - success\n", num, name); in check_ecc_result() 203 int check_code(const int num, const char *name, const int expected, in check_code() argument 208 TC_ERROR("\n Vector #%02d check %s - FAILURE:\n", num, name); in check_code() 214 TC_PRINT(" Vector #%02d check %s - success (%d=%d)\n", num, name, in check_code()
|
/mcuboot-3.7.0/sim/simflash/ |
D | Cargo.toml | 2 name = "simflash"
|
/mcuboot-3.7.0/boot/zcbor/include/ |
D | zcbor_encode.h | 47 #define ZCBOR_STATE_E(name, num_backups, payload, payload_size, elem_count) \ argument 48 zcbor_state_t name[((num_backups) + 2)]; \ 50 zcbor_new_encode_state(name, ZCBOR_ARRAY_SIZE(name), payload, payload_size, elem_count); \
|
D | zcbor_decode.h | 51 #define ZCBOR_STATE_D(name, num_backups, payload, payload_size, elem_count, n_flags) \ argument 52 zcbor_state_t name[((num_backups) + 2 + ZCBOR_FLAG_STATES(n_flags))]; \ 54 zcbor_new_decode_state(name, ZCBOR_ARRAY_SIZE(name), payload, payload_size, elem_count, \ 55 (uint8_t *)&name[(num_backups) + 1], ZCBOR_FLAG_STATES(n_flags) * sizeof(zcbor_state_t)); \
|
/mcuboot-3.7.0/scripts/ |
D | setup.py | 7 name="imgtool",
|
D | imgtool.nix | 29 name = "imgtool";
|
/mcuboot-3.7.0/ext/fiat/ |
D | METADATA | 1 name: "fiat"
|
/mcuboot-3.7.0/ptest/src/ |
D | main.rs | 96 #[command(name = "ptest")] 165 let name = format!("./{}-{:04}.log", base, count); in done() localVariable 170 .open(&name) in done() 172 Ok(file) => break (file, name), in done()
|
/mcuboot-3.7.0/testplan/mynewt/apps/slinky/src/ |
D | main.c | 86 static int test_conf_export(void (*export_func)(char *name, char *val), 138 test_conf_export(void (*func)(char *name, char *val), enum conf_export_tgt tgt) in test_conf_export() argument
|
/mcuboot-3.7.0/sim/src/ |
D | lib.rs | 82 let name = match *self { in fmt() localVariable 91 f.write_str(name) in fmt()
|
/mcuboot-3.7.0/docs/release-notes.d/ |
D | 00readme.md | 21 directory and have a name of `*.md`. They will be included in the
|