Home
last modified time | relevance | path

Searched refs:input_file (Results 1 – 5 of 5) sorted by relevance

/mbedtls-latest/programs/psa/
Dkey_ladder_demo.c351 FILE *input_file = NULL; in wrap_data() local
363 SYS_CHECK((input_file = fopen(input_file_name, "rb")) != NULL); in wrap_data()
365 mbedtls_setbuf(input_file, NULL); in wrap_data()
366 SYS_CHECK(fseek(input_file, 0, SEEK_END) == 0); in wrap_data()
367 SYS_CHECK((input_position = ftell(input_file)) != -1); in wrap_data()
388 SYS_CHECK(fseek(input_file, 0, SEEK_SET) == 0); in wrap_data()
390 SYS_CHECK(fread(buffer, 1, input_size, input_file) == input_size); in wrap_data()
391 SYS_CHECK(fclose(input_file) == 0); in wrap_data()
392 input_file = NULL; in wrap_data()
420 if (input_file != NULL) { in wrap_data()
[all …]
/mbedtls-latest/tests/scripts/
Dtest_config_script.py87 def run_one(options, args, stem_prefix='', input_file=None): argument
103 if input_file is None:
104 input_file = options.input_file
110 shutil.copy(input_file, data_filename)
147 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
150 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
Danalyze_outcomes.py182 with open(outcome_file, 'r', encoding='utf-8') as input_file:
183 for line in input_file:
/mbedtls-latest/scripts/
Dassemble_changelog.py416 def finish_output(changelog, output_file, input_file, merged_files): argument
430 check_output(output_temp, input_file, merged_files)
469 with open(options.input, 'r', encoding='utf-8') as input_file:
470 changelog = ChangeLog(input_file, TextChangelogFormat)
476 with open(filename, 'r', encoding='utf-8') as input_file:
477 changelog.add_file(input_file)
/mbedtls-latest/tests/suites/
Dtest_suite_bignum.function272 void mpi_read_file(char *input_file, data_t *input_A, int result)
284 file = fopen(input_file, "r");