Home
last modified time | relevance | path

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

/mbedtls-latest/tests/scripts/
Dset_psa_test_dependencies.py111 def dependencies_of_symbol(symbol): argument
113 if symbol in WITHOUT_SYSTEMATIC_DEPENDENCIES:
115 if symbol in SPECIAL_SYSTEMATIC_DEPENDENCIES:
116 return SPECIAL_SYSTEMATIC_DEPENDENCIES[symbol]
117 if symbol.startswith('PSA_ALG_CATEGORY_') or \
118 symbol.startswith('PSA_KEY_TYPE_CATEGORY_'):
122 return {symbol.replace('_', '_WANT_', 1)}
152 for symbol in re.findall(r'PSA_(?:ALG|KEY_TYPE)_\w+', arg):
153 deps.update(dependencies_of_symbol(symbol))
Dtest_config_script.py144 for symbol in TEST_SYMBOLS:
145 run_one(options, ['get', symbol])
146 (stem, filename) = run_one(options, ['set', symbol])
147 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
148 run_one(options, ['--force', 'set', symbol])
149 (stem, filename) = run_one(options, ['set', symbol, 'value'])
150 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
151 run_one(options, ['--force', 'set', symbol, 'value'])
152 run_one(options, ['unset', symbol])
Ddepends.py293 def handle_exclusive_groups(config_settings, symbol): argument
296 for dep in EXCLUSIVE_GROUPS.get(symbol, []):
329 for symbol in symbols:
330 base_config_settings[symbol] = False
331 for symbol in symbols:
332 description = symbol
336 config_settings[symbol] = True
337 handle_exclusive_groups(config_settings, symbol)
353 for symbol in symbols:
354 description = '!' + symbol
[all …]
Dcheck_names.py761 symbol = nm_valid_regex.search(line)
762 if (symbol and not symbol.group("symbol").startswith(exclusions)):
763 symbols.append(symbol.group("symbol"))
825 for symbol in self.parse_result["symbols"]:
828 if symbol == identifier_match.name:
833 problems.append(SymbolNotInHeader(symbol))
/mbedtls-latest/docs/proposed/
Dpsa-conditional-inclusion-c.md24 …raphy. For example, many parts of the ECC code have no `MBEDTLS_xxx_ALT` symbol, so a platform wit…
52 …ls of the form `PSA_WANT_xxx` where `xxx` describes the feature that the symbol enables. The symbo…
54 The symbol `MBEDTLS_PSA_CRYPTO_CONFIG` in `mbedtls/mbedtls_config.h` determines whether `psa/crypto…
61 #### 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…
67 * If the symbol is defined with a different value, the behavior is currently undefined and reserved…
69 #### Configuration symbol usage
71 The presence of a symbol `PSA_WANT_xxx` in the Mbed TLS configuration determines whether a feature …
[all …]
/mbedtls-latest/scripts/
Dconfig.py585 if args.symbol in config:
586 value = config[args.symbol]
589 return 0 if args.symbol in config else 1
591 if not args.force and args.symbol not in config.settings:
594 .format(args.symbol, config.filename))
596 config.set(args.symbol, value=args.value)
600 config.unset(args.symbol)
/mbedtls-latest/docs/architecture/
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.
Dpsa-crypto-implementation-structure.md127 * The feature is available to applications when the preprocessor symbol `PSA_WANT_ttt_xxx` is defin…
/mbedtls-latest/scripts/data_files/
Dquery_config.fmt111 CHECK_CONFIG /* If the symbol is not found, return an error */
/mbedtls-latest/tests/suites/
Dmain_test.function28 /* Test code may use deprecated identifiers only if the preprocessor symbol
/mbedtls-latest/docs/
Ddriver-only-builds.md336 - Enable `MBEDTLS_PSA_ACCEL_[KEY_TYPE_xxx|ALG_yyy]` symbol(s) which correspond
405 - The legacy symbol `MBEDTLS_CCM_C` adds support for both cipher and AEAD,
Dpsa-transition.md185 …For parametrized algorithms, there is a `PSA_WANT_` symbol both for the main macro and for each ar…
300symbol `PSA_WANT_KEY_TYPE_xxx` is defined with a non-zero value if the library is built with suppo…
465symbol `PSA_WANT_KEY_TYPE_xxx` is defined with a non-zero value if the library is built with suppo…
D3.0-migration-guide.md55 A config file version symbol, `MBEDTLS_CONFIG_VERSION` was introduced.
/mbedtls-latest/3rdparty/p256-m/p256-m/
DREADME.md95 unsigned multiplication instruction, the symbol `MUL64_IS_CONSTANT_TIME` can
/mbedtls-latest/
DChangeLog435 corresponding MBEDTLS_PSA_ACCEL symbol should be defined in case
2101 * A config file version symbol, MBEDTLS_CONFIG_VERSION was introduced.
2462 * Use local labels in mbedtls_padlock_has_support() to fix an invalid symbol
4184 * Fix the redefinition of macro ssl_set_bio to an undefined symbol
4301 through the symbol YOTTA_CFG_MBEDTLS_TARGET_CONFIG_FILE.