Home
last modified time | relevance | path

Searched full:string (Results 1 – 25 of 112) sorted by relevance

12345

/mcuboot-latest/samples/zephyr/mcutests/
Dmcutests.go7 Name string
8 ShortName string
16 Build: [][]string{
19 Commands: [][]string{
25 Commands: [][]string{
31 Commands: [][]string{
37 Commands: [][]string{
49 Build: [][]string{
52 Commands: [][]string{
58 Commands: [][]string{
[all …]
/mcuboot-latest/boot/zcbor/include/
Dzcbor_tags.h25 ZCBOR_TAG_TIME_TSTR = 0, ///! text string [RFC8949] Standard date/time string
27 ZCBOR_TAG_UBIGNUM_BSTR = 2, ///! byte string [RFC8949] Unsigned bignum
28 ZCBOR_TAG_BIGNUM_BSTR = 3, ///! byte string [RFC8949] Negative bignum
37 ZCBOR_TAG_BSTR = 24, ///! byte string [RFC8949] Encoded CBOR data item
38 ZCBOR_TAG_URI_TSTR = 32, ///! text string [RFC8949] URI
39 ZCBOR_TAG_BASE64URL_TSTR = 33, ///! text string [RFC8949] base64url
40 ZCBOR_TAG_BASE64_TSTR = 34, ///! text string [RFC8949] base64
41 ZCBOR_TAG_REGEX = 35, ///! text string [RFC7049] Regular expression (UTF-8)
42 ZCBOR_TAG_MIME_TSTR = 36, ///! text string [RFC8949] MIME message
43 ZCBOR_TAG_LANG_TSTR = 38, ///! array [RFC9290] Text string with language tag
[all …]
Dzcbor_common.h18 #include <string.h>
32 /** The version string with dots and not prefix. */
51 /** Type representing a string fragment.
57 size_t offset; ///! The offset in the full string at which this fragment belongs.
58 size_t total_len; ///! The total length of the string this fragment is a part of.
176 ZCBOR_MAJOR_TYPE_BSTR = 2, ///! Byte String
177 ZCBOR_MAJOR_TYPE_TSTR = 3, ///! Text String
408 * @param[in] fragments An array of string fragments. Cannot be NULL.
419 /** Assemble the fragments into a single string.
425 * @param[in] fragments An array of string fragments. Cannot be NULL.
[all …]
Dzcbor_decode.h357 /** Supplementary string (bstr/tstr) decoding functions: */
362 * @param[in] str The value to expect. A pointer to the string/array.
364 …* _lit() uses sizeof()-1, so @p str must be a (null-terminated) string liter…
366 * @param[in] len (if present) The length of the string pointed to by @p str
367 * @param[in] maxlen (if present) The maximum length of the string pointed to by @p str.
381 * The rest of the string can be decoded as CBOR.
386 * @param[out] result The resulting string, for reference. The string should be decoded via
387 * functions from this API since state is pointing to the start of the string,
392 * to contain the contents of the string. Use @ref zcbor_bstr_start_decode_fragment
404 /** Supplementary string (bstr/tstr) decoding functions for fragmented payloads: */
[all …]
Dzcbor_encode.h199 /* Supplementary string (bstr/tstr) encoding functions: */
204 * @param[in] str The value to encode. A pointer to the string/array.
206 …* _lit() uses sizeof()-1, so @p str must be a (null-terminated) string liter…
208 * @param[in] len (if present) The length of the string pointed to by @p str
209 * @param[in] maxlen (if present) The maximum length of the string pointed to by @p str.
223 * The rest of the string can be encoded as CBOR.
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/
Dversion.h47 * Get the version string ("x.y.z").
49 * \param string The string that will receive the value.
52 void mbedtls_version_get_string( char *string );
55 * Get the full version string ("mbed TLS x.y.z").
57 * \param string The string that will receive the value. The mbed TLS version
58 * string will use 18 bytes AT MOST including a terminating
61 * version string).
63 void mbedtls_version_get_string_full( char *string );
75 * \param feature The string for the define to check (e.g. "MBEDTLS_AES_C")
Derror.h4 * \brief Error to string translation
166 * \brief Translate a mbed TLS error code into a string representation,
177 * \brief Translate the high-level part of an Mbed TLS error code into a string
180 * This function returns a const pointer to an un-modifiable string. The caller
181 * must not try to modify the string. It is intended to be used mostly for
186 * \return The string representation of the error code, or \c NULL if the error
192 * \brief Translate the low-level part of an Mbed TLS error code into a string
195 * This function returns a const pointer to an un-modifiable string. The caller
196 * must not try to modify the string. It is intended to be used mostly for
201 * \return The string representation of the error code, or \c NULL if the error
Dasn1.h88 /* Slightly smaller way to check if tag is a string tag
117 /** Returns the size of the binary string, without the trailing \\0 */
160 …unsigned char MBEDTLS_PRIVATE(unused_bits); /**< Number of unused bits at the end of the string */
161 unsigned char *MBEDTLS_PRIVATE(p); /**< Raw ASN1 data for the bit string */
308 * extra data after a valid BIT STRING.
310 * a valid ASN.1 BIT STRING.
318 * Updates the pointer to the beginning of the bit/octet string.
322 * of the content of the BIT STRING.
329 * a valid BIT STRING with a nonzero number of unused bits.
331 * a valid ASN.1 BIT STRING.
[all …]
/mcuboot-latest/samples/zephyr/
Drun-tests.go40 var logIn = flag.String("login", "/tmp/zephyr.out", "File name of terminal log from Zephyr device")
43 var logOut = flag.String("logout", "tests.log", "Log file to write to")
45 var preBuilt = flag.String("prebuilt", "", "Name of file with prebuilt tests")
57 lines := make(chan string, 30)
121 func runCommands(cmds [][]string, lg io.Writer) error { argument
135 func runCommand(cmd []string, lg io.Writer) error { argument
142 // Expect the given string.
143 func expect(lg io.Writer, lines <-chan string, exp string) error { argument
160 return fmt.Errorf("timeout, didn't receive expected string: %q", exp)
168 func readLog(sink chan<- string) { argument
[all …]
Dtest-compile.go24 var outFile = flag.String("out", "test-images.zip", "Name of zip file to put built tests into")
91 func (b *Builds) Capture(testName string) error {
111 for _, name := range []string{
125 func (b *Builds) add(baseName, zipName, fileName string) error {
/mcuboot-latest/boot/boot_serial/
Dsyscfg.yml43 management string (BOOT_SERIAL_DETECT_STRING). If the management
44 string is detected during this period, the serial boot loader is
45 started. If the period expires without the management string being
48 string.
57 The string to listen for on the UART. If this management string is
59 started. If the period expires without this string being received,
/mcuboot-latest/boot/espressif/tools/
Dtoolchain-esp32.cmake8 set(CMAKE_C_FLAGS "${UNIQ_CMAKE_C_FLAGS}" CACHE STRING "C Compiler Base Flags" FORCE)
9 set(CMAKE_CXX_FLAGS "${UNIQ_CMAKE_CXX_FLAGS}" CACHE STRING "C++ Compiler Base Flags" FORCE)
10 set(CMAKE_ASM_FLAGS "${UNIQ_CMAKE_ASM_FLAGS}" CACHE STRING "ASM Compiler Base Flags" FORCE)
12 set(CMAKE_EXE_LINKER_FLAGS "-Wl,--gc-sections" CACHE STRING "Linker Base Flags")
Dtoolchain-esp32s3.cmake12 set(CMAKE_C_FLAGS "-mlongcalls" CACHE STRING "C Compiler Base Flags" FORCE)
13 set(CMAKE_CXX_FLAGS "-mlongcalls" CACHE STRING "C++ Compiler Base Flags" FORCE)
14 set(CMAKE_ASM_FLAGS "${UNIQ_CMAKE_ASM_FLAGS}" CACHE STRING "ASM Compiler Base Flags" FORCE)
16 set(CMAKE_EXE_LINKER_FLAGS "-Wl,--gc-sections" CACHE STRING "Linker Base Flags")
Dtoolchain-esp32s2.cmake7 set(CMAKE_C_FLAGS "-mlongcalls" CACHE STRING "C Compiler Base Flags")
8 set(CMAKE_CXX_FLAGS "-mlongcalls" CACHE STRING "C++ Compiler Base Flags")
10 set(CMAKE_EXE_LINKER_FLAGS "-Wl,--gc-sections" CACHE STRING "Linker Base Flags")
Dtoolchain-esp32c3.cmake7 set(CMAKE_C_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C Compiler Base Flags")
8 set(CMAKE_CXX_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C++ Compiler Base Flags")
9 … "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs" CACHE STRING "Linker Base Flags…
Dtoolchain-esp32c2.cmake11 set(CMAKE_C_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C Compiler Base Flags")
12 set(CMAKE_CXX_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C++ Compiler Base Flags")
13 … "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs" CACHE STRING "Linker Base Flags…
Dtoolchain-esp32c6.cmake11 set(CMAKE_C_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C Compiler Base Flags")
12 set(CMAKE_CXX_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C++ Compiler Base Flags")
13 … "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs" CACHE STRING "Linker Base Flags…
Dtoolchain-esp32h2.cmake11 set(CMAKE_C_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C Compiler Base Flags")
12 set(CMAKE_CXX_FLAGS "-march=rv32imc_zicsr_zifencei" CACHE STRING "C++ Compiler Base Flags")
13 … "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs" CACHE STRING "Linker Base Flags…
Dutils.cmake11 string(REGEX REPLACE "^[ ]+" "" config ${config})
12 string(REGEX MATCH "^[^=]+" CONFIG_NAME ${config})
13 string(REPLACE "${CONFIG_NAME}=" "" CONFIG_VALUE ${config})
/mcuboot-latest/sim/simflash/src/
Dpdump.rs13 hex: String,
14 ascii: String,
22 hex: String::with_capacity(49), in new()
23 ascii: String::with_capacity(16), in new()
78 "This is a much longer string".as_bytes().dump(); in samples()
/mcuboot-latest/ptest/src/
Dmain.rs101 workflow: String,
121 running: HashSet<String>,
122 done: HashSet<String>,
211 env: String,
213 values: Vec<String>,
330 fn textual(&self) -> String { in textual() argument
333 let mut buf = String::new(); in textual()
344 fn simple_textual(&self) -> String { in simple_textual() argument
347 let mut buf = String::new(); in simple_textual()
357 let jobs = Yaml::String("jobs".to_string()); in lookup_matrix()
[all …]
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/
Dsha256.h44 * the string being hashed is prefix-free encoded before hashing.
47 * tc_sha256_state_struct before hashing a new string.
49 * 2) call tc_sha256_update to hash the next string segment;
51 * all of the segments of a string; the order is important.
/mcuboot-latest/ext/tinycrypt-sha512/lib/include/tinycrypt/
Dsha512.h44 * the string being hashed is prefix-free encoded before hashing.
47 * tc_sha512_state_struct before hashing a new string.
49 * 2) call tc_sha512_update to hash the next string segment;
51 * all of the segments of a string; the order is important.
/mcuboot-latest/boot/boot_serial/src/
Dzcbor_bulk.h24 struct zcbor_string key; /* Map key string */
34 * @param k key is "" enclosed string representing key;
80 * where "key?" is string representing key; the decode_fun? is
/mcuboot-latest/ext/tinycrypt/tests/include/
Dtest_ecc_utils.h69 * Convert hex string to byte string
76 * Convert hex string to zero-padded nanoECC scalar

12345