Home
last modified time | relevance | path

Searched refs:symbol (Results 1 – 12 of 12) sorted by relevance

/mbedtls-development/tests/scripts/
A Dset_psa_test_dependencies.py123 def dependencies_of_symbol(symbol): argument
125 if symbol in WITHOUT_SYSTEMATIC_DEPENDENCIES:
127 if symbol in SPECIAL_SYSTEMATIC_DEPENDENCIES:
128 return SPECIAL_SYSTEMATIC_DEPENDENCIES[symbol]
129 if symbol.startswith('PSA_ALG_CATEGORY_') or \
130 symbol.startswith('PSA_KEY_TYPE_CATEGORY_'):
134 return {symbol.replace('_', '_WANT_', 1)}
164 for symbol in re.findall(r'PSA_(?:ALG|KEY_TYPE)_\w+', arg):
165 deps.update(dependencies_of_symbol(symbol))
A Dtest_config_script.py155 for symbol in TEST_SYMBOLS:
156 run_one(options, ['get', symbol])
157 (stem, filename) = run_one(options, ['set', symbol])
158 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
159 run_one(options, ['--force', 'set', symbol])
160 (stem, filename) = run_one(options, ['set', symbol, 'value'])
161 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
162 run_one(options, ['--force', 'set', symbol, 'value'])
163 run_one(options, ['unset', symbol])
A Dcheck_names.py667 symbol = nm_valid_regex.search(line)
668 if (symbol and not symbol.group("symbol").startswith(exclusions)):
669 symbols.append(symbol.group("symbol"))
728 for symbol in self.parse_result["symbols"]:
731 if symbol == identifier_match.name:
736 problems.append(SymbolNotInHeader(symbol))
A Dgenerate_psa_tests.py90 return frozenset(symbol
92 for symbol in re.findall(r'\bPSA_WANT_\w+\b', line))
/mbedtls-development/docs/proposed/
A Dpsa-conditional-inclusion-c.md61 #### Configuration symbol syntax
63 A PSA Crypto configuration symbol is a C preprocessor symbol whose name starts with `PSA_WANT_`.
65 * If the symbol is not defined, the corresponding feature is not included.
66 * If the symbol is defined to a preprocessor expression with the value `1`, the corresponding featu…
69 #### Configuration symbol usage
77 #### Configuration symbol semantics
122 ### Architecture of symbol definitions
144 * (U) indicates a symbol that is defined by the user (application).
145 * (D) indicates a symbol that is deduced from other symbols by code that ships with Mbed TLS.
146 * (G) indicates a symbol that is generated from driver descriptions.
[all …]
/mbedtls-development/scripts/
A Dconfig.py514 if args.symbol in config:
515 value = config[args.symbol]
518 return 0 if args.symbol in config else 1
520 if not args.force and args.symbol not in config.settings:
523 .format(args.symbol, config.filename))
525 config.set(args.symbol, value=args.value)
529 config.unset(args.symbol)
/mbedtls-development/scripts/data_files/
A Dquery_config.fmt117 CHECK_CONFIG /* If the symbol is not found, return an error */
/mbedtls-development/docs/architecture/
A Dalternative-implementations.md72 …me contains `_internal`, `_ext` or `_ret`, this is removed in the `_ALT` symbol. When the correspo…
84 * Define the symbol `MBEDTLS_PLATFORM_XXX_ALT` at compile time.
/mbedtls-development/tests/suites/
A Dmain_test.function28 /* Test code may use deprecated identifiers only if the preprocessor symbol
/mbedtls-development/doxygen/
A Dmbedtls.doxyfile344 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
346 # be an expensive process and often the same symbol appear multiple times in
715 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
717 # output. The symbol name can be a fully qualified name, a word, or if the
/mbedtls-development/docs/
A D3.0-migration-guide.md34 A config file version symbol, `MBEDTLS_CONFIG_VERSION` was introduced.
/mbedtls-development/
A DChangeLog455 * A config file version symbol, MBEDTLS_CONFIG_VERSION was introduced.
816 * Use local labels in mbedtls_padlock_has_support() to fix an invalid symbol
2538 * Fix the redefinition of macro ssl_set_bio to an undefined symbol
2655 through the symbol YOTTA_CFG_MBEDTLS_TARGET_CONFIG_FILE.

Completed in 23 milliseconds