Searched refs:symbol (Results 1 – 15 of 15) sorted by relevance
/mbedtls-latest/tests/scripts/ |
D | set_psa_test_dependencies.py | 111 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))
|
D | test_config_script.py | 144 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])
|
D | depends.py | 293 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 …]
|
D | check_names.py | 761 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/ |
D | psa-conditional-inclusion-c.md | 24 …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/ |
D | config.py | 585 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/ |
D | alternative-implementations.md | 72 …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.
|
D | psa-crypto-implementation-structure.md | 127 * The feature is available to applications when the preprocessor symbol `PSA_WANT_ttt_xxx` is defin…
|
/mbedtls-latest/scripts/data_files/ |
D | query_config.fmt | 111 CHECK_CONFIG /* If the symbol is not found, return an error */
|
/mbedtls-latest/tests/suites/ |
D | main_test.function | 28 /* Test code may use deprecated identifiers only if the preprocessor symbol
|
/mbedtls-latest/docs/ |
D | driver-only-builds.md | 336 - 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,
|
D | psa-transition.md | 185 …For parametrized algorithms, there is a `PSA_WANT_` symbol both for the main macro and for each ar… 300 …symbol `PSA_WANT_KEY_TYPE_xxx` is defined with a non-zero value if the library is built with suppo… 465 …symbol `PSA_WANT_KEY_TYPE_xxx` is defined with a non-zero value if the library is built with suppo…
|
D | 3.0-migration-guide.md | 55 A config file version symbol, `MBEDTLS_CONFIG_VERSION` was introduced.
|
/mbedtls-latest/3rdparty/p256-m/p256-m/ |
D | README.md | 95 unsigned multiplication instruction, the symbol `MUL64_IS_CONSTANT_TIME` can
|
/mbedtls-latest/ |
D | ChangeLog | 435 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.
|