| /trusted-firmware-m-latest/cmake/ |
| D | utils.cmake | 8 # A string calibrating routine to the specified length by 9 # appending to an input string a specified character. 11 # output - variable to return the calibrated string 14 string(LENGTH ${input} length) 16 string(CONCAT input ${input} ${filler}) 45 string(STRIP ${option} option) 59 string (REPLACE ";" " " ARGV_STRING "${ARGV}") 60 string (REPLACE "STREQUAL" "=" ARGV_STRING "${ARGV_STRING}") 61 string (REPLACE "GREATER" ">" ARGV_STRING "${ARGV_STRING}") 62 string (REPLACE "LESS" "<" ARGV_STRING "${ARGV_STRING}") [all …]
|
| D | version.cmake | 19 string(FIND ${TFM_VERSION_FULL} "TF-M" TFM_TAG) 24 string(REGEX REPLACE "TF-M" "" TFM_VERSION_FULL ${TFM_VERSION_FULL}) 26 string(REGEX REPLACE "-[0-9]+-g" "+" TFM_VERSION_FULL ${TFM_VERSION_FULL}) 27 string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" TFM_VERSION ${TFM_VERSION_FULL})
|
| D | remote_library.cmake | 24 string(RANDOM LENGTH 16 STASH_NAME) 40 string(FIND "${STASH_LIST}" "${STASH_NAME}" STASH_INDEX) 135 # This function helps to handle options with an empty string values. 136 # There is a feature/bug in CMake that result in problem with the empty string arguments. 142 # an empty string otherwise to the empty string. 242 # Process arguments which can be an empty string 243 # There is a feature/bug in CMake that result in problem with empty string arguments 250 # There is an unsupported empty string argument, FATAL ERROR! 254 … message(FATAL_ERROR "fetch_remote_library: Unexpected empty string value for ${EMPTY_KEY}. "
|
| /trusted-firmware-m-latest/platform/ns/ |
| D | toolchain_ns_ARMCLANG.cmake | 92 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nomve") 97 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nodsp") 112 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nofp") 115 string(REGEX REPLACE "\\+nodsp" ".no_dsp" CMAKE_ASM_CPU_FLAG "${CMAKE_SYSTEM_PROCESSOR}") 116 string(REGEX REPLACE "\\+nomve" ".no_mve" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 117 string(REGEX REPLACE "\\+nofp" ".no_fp" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 122 string(REGEX REPLACE "\\armv" "" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 123 string(REGEX REPLACE "\\armv" "" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 127 string(APPEND CMAKE_ASM_CPU_FLAG ".dsp") 131 string(APPEND CMAKE_ASM_CPU_FLAG ".fp") [all …]
|
| D | toolchain_ns_GNUARM.cmake | 54 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nodsp") 68 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nofp") 74 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nomve") 77 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nomve.fp") 91 string(APPEND CMAKE_SYSTEM_ARCH "+mve") 94 string(APPEND CMAKE_SYSTEM_ARCH "+mve.fp") 104 string(APPEND CMAKE_SYSTEM_ARCH "+nodsp") 111 string(APPEND CMAKE_SYSTEM_ARCH "+fp") 158 string(APPEND COMPILER_CP_FLAG " " "-mfpu=${CONFIG_TFM_FP_ARCH}") 159 string(APPEND LINKER_CP_OPTION " " "-mfpu=${CONFIG_TFM_FP_ARCH}") [all …]
|
| D | toolchain_ns_IARARM.cmake | 69 string(APPEND CMAKE_SYSTEM_PROCESSOR ".no_dsp") 118 string(APPEND CMAKE_C_FLAGS " " ${COMPILER_CP_C_FLAG}) 119 string(APPEND CMAKE_ASM_FLAGS " " ${COMPILER_CP_ASM_FLAG}) 120 string(APPEND CMAKE_C_LINK_FLAGS " " ${LINKER_CP_OPTION}) 121 string(APPEND CMAKE_ASM_LINK_FLAGS " " ${LINKER_CP_OPTION}) 183 string(REGEX REPLACE ".*>:(.*)>$" "\\1" SCATTER_FILE_PATH "${scatter_file}")
|
| /trusted-firmware-m-latest/config/ |
| D | cp_check.cmake | 13 string (REPLACE ";" " " ARGV_STRING "${ARGV}") 14 string (REPLACE "STREQUAL" "=" ARGV_STRING "${ARGV_STRING}") 15 string (REPLACE "GREATER" ">" ARGV_STRING "${ARGV_STRING}") 16 string (REPLACE "LESS" "<" ARGV_STRING "${ARGV_STRING}") 17 string (REPLACE "VERSION_LESS" "<" ARGV_STRING "${ARGV_STRING}") 18 string (REPLACE "EQUAL" "=" ARGV_STRING "${ARGV_STRING}") 19 string (REPLACE "IN_LIST" "in" ARGV_STRING "${ARGV_STRING}")
|
| D | kconfig.cmake | 37 string(REGEX MATCH "^#.*" OUT_STRING ${LINE}) 39 string(APPEND CONTENTS_WITHOUT_COMMENTS "${LINE}\n") 42 string(REGEX MATCH "^include\\((.*)\\)$" OUT_STRING ${LINE}) 49 string(REGEX MATCHALL 58 string(REGEX REPLACE 62 string(REGEX REPLACE 67 string(REGEX REPLACE 72 string(REGEX REPLACE 76 # Quoted string 77 string(REGEX REPLACE [all …]
|
| /trusted-firmware-m-latest/ |
| D | Kconfig.misc | 32 string "Path to TFM NS Evaluation Application" 41 string "Mbedcrypto build type" 45 string "Mbedtls config path" 57 string "Mbedtls psa crypto config path" 63 string "Mbedtls platform crypto config path" 74 string "TF-M native Secure Partition manifests list file"
|
| D | toolchain_ARMCLANG.cmake | 91 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nomve") 96 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nodsp") 111 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nofp") 114 string(REGEX REPLACE "\\+nodsp" ".no_dsp" CMAKE_ASM_CPU_FLAG "${CMAKE_SYSTEM_PROCESSOR}") 115 string(REGEX REPLACE "\\+nomve" ".no_mve" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 116 string(REGEX REPLACE "\\+nofp" ".no_fp" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 121 string(REGEX REPLACE "\\armv" "" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 122 string(REGEX REPLACE "\\armv" "" CMAKE_ASM_CPU_FLAG "${CMAKE_ASM_CPU_FLAG}") 126 string(APPEND CMAKE_ASM_CPU_FLAG ".dsp") 130 string(APPEND CMAKE_ASM_CPU_FLAG ".fp") [all …]
|
| D | toolchain_GNUARM.cmake | 47 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nodsp") 61 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nofp") 67 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nomve") 70 string(APPEND CMAKE_SYSTEM_PROCESSOR "+nomve.fp") 84 string(APPEND CMAKE_SYSTEM_ARCH "+mve") 87 string(APPEND CMAKE_SYSTEM_ARCH "+mve.fp") 97 string(APPEND CMAKE_SYSTEM_ARCH "+nodsp") 104 string(APPEND CMAKE_SYSTEM_ARCH "+fp") 160 # remove the READONLY string from the linker scripts. 221 string(REGEX REPLACE ".*>:(.*)>$" "\\1" SCATTER_FILE_PATH "${scatter_file}")
|
| /trusted-firmware-m-latest/interface/include/mbedtls/ |
| D | version.h | 40 void mbedtls_version_get_string(char *string); 51 void mbedtls_version_get_string_full(char *string);
|
| /trusted-firmware-m-latest/bl1/ |
| D | Kconfig | 15 string 21 string 31 string 76 string "Image version of BL2 image" 104 string "BL1_2 build type" 108 string "Path to list of symbols that BL1_1 that can be referenced from BL1_2"
|
| /trusted-firmware-m-latest/platform/ |
| D | Kconfig.arch | 35 string 70 string 95 string 101 string
|
| /trusted-firmware-m-latest/bl2/ext/mcuboot/ |
| D | Kconfig | 93 string "Upgrade strategy for images" 176 string 183 string "Algorithm to use for signature validation [RSA-2048, RSA-3072, EC-P256, EC-P384]" 196 string "Path to key with which to sign secure binary" 200 string "Path to key with which to sign non-secure binary" 204 string "Version number of S image" 208 string "Version number of NS image" 220 string "Minimum version of secure image" 228 string "Minimum version of non-secure image" 240 string "Mbedtls config file to use with MCUboot" [all …]
|
| /trusted-firmware-m-latest/docs/design_docs/ |
| D | tfm_log_system_design_document.rst | 19 - SPM only needs simple log format such as hex and string, while SP needs rich 60 numbers inside SPM. The 'msg' can be skipped with giving an empty string like 61 "". And these APIs supports constant 'msg' string only, giving a runtime string 70 A C-function needs to work as an underlayer for these APIs as string formatting 78 * formatted hexadecimal string for 'value' has a '0x' prefix and 80 * 'tfm_hal_output_spm_log' to output the formatted string. 82 * \param[in] msg A string message 91 The following three APIs output a message in string. 164 %s - string
|
| /trusted-firmware-m-latest/interface/include/psa/ |
| D | initial_attestation.h.in | 60 * is encoded as byte string. 68 * string. 72 * The value is a text string that can be used to locate the 77 * claim. Value is encoded as text string. 83 * Custom claim with a value encoded as text string. 89 * Custom claim with a value encoded as byte string. 115 * is encoded as text string. 120 * encoded as byte string. 130 * string. 135 * encoded as byte string. [all …]
|
| /trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/pki/common/ |
| D | pki_dbg.h | 33 #define PKA_ASSERT(x, string) if(!(x)) {CC_PalAbort(string);} argument 100 #define PKA_ASSERT(x, string)
|
| /trusted-firmware-m-latest/secure_fw/partitions/firmware_update/ |
| D | Kconfig | 16 string "Bootloader configure file" 30 string "The device configuration file for Firmware Update partition"
|
| /trusted-firmware-m-latest/lib/ext/t_cose/src/ |
| D | t_cose_sign1_verify.c | 128 protected_parameters = item.val.string; in t_cose_sign1_verify() 174 *payload = item.val.string; in t_cose_sign1_verify() 183 signature = item.val.string; in t_cose_sign1_verify()
|
| D | t_cose_mac0_verify.c | 140 protected_parameters = item.val.string; in t_cose_mac0_verify() 183 *payload = item.val.string; in t_cose_mac0_verify() 191 tag = item.val.string; in t_cose_mac0_verify()
|
| D | t_cose_parameters.c | 118 label_list->tstr_labels[n] = item->label.string; in add_label_to_list() 199 critical_labels->tstr_labels[num_tstr_labels++] = item.val.string; in decode_critical_parameter() 470 returned_parameters->kid = item.val.string; in parse_cose_header_parameters() 482 returned_parameters->iv = item.val.string; in parse_cose_header_parameters() 494 returned_parameters->partial_iv = item.val.string; in parse_cose_header_parameters() 528 returned_parameters->content_type_tstr = item.val.string; in parse_cose_header_parameters()
|
| /trusted-firmware-m-latest/lib/ext/t_cose/inc/ |
| D | q_useful_buf.h | 84 static inline struct q_useful_buf_c q_useful_buf_from_sz(const char *string) in q_useful_buf_from_sz() argument 86 return UsefulBuf_FromSZ(string); in q_useful_buf_from_sz()
|
| /trusted-firmware-m-latest/lib/ext/qcbor/ |
| D | q_useful_buf.h | 84 static inline struct q_useful_buf_c q_useful_buf_from_sz(const char *string) in q_useful_buf_from_sz() argument 86 return UsefulBuf_FromSZ(string); in q_useful_buf_from_sz()
|
| /trusted-firmware-m-latest/platform/ext/cmsis/CMSIS/CoreValidation/Layer/Target/CM3/ |
| D | model_config.txt | 7 armcortexm3ct.semihosting-cmd_line="" # (string, init-time) default = '' : Co… 12 armcortexm3ct.semihosting-cwd="" # (string, init-time) default = '' : Ba…
|