Searched refs:input_file (Results 1 – 5 of 5) sorted by relevance
/openthread-2.7.6/third_party/mbedtls/repo/programs/psa/ |
D | key_ladder_demo.c | 366 FILE *input_file = NULL; in wrap_data() local 376 SYS_CHECK( ( input_file = fopen( input_file_name, "rb" ) ) != NULL ); in wrap_data() 377 SYS_CHECK( fseek( input_file, 0, SEEK_END ) == 0 ); in wrap_data() 378 SYS_CHECK( ( input_position = ftell( input_file ) ) != -1 ); in wrap_data() 398 SYS_CHECK( fseek( input_file, 0, SEEK_SET ) == 0 ); in wrap_data() 400 SYS_CHECK( fread( buffer, 1, input_size, input_file ) == input_size ); in wrap_data() 401 SYS_CHECK( fclose( input_file ) == 0 ); in wrap_data() 402 input_file = NULL; in wrap_data() 428 if( input_file != NULL ) in wrap_data() 429 fclose( input_file ); in wrap_data() [all …]
|
/openthread-2.7.6/third_party/mbedtls/repo/tests/scripts/ |
D | test_config_script.py | 98 def run_one(options, args, stem_prefix='', input_file=None): argument 114 if input_file is None: 115 input_file = options.input_file 121 shutil.copy(input_file, data_filename) 158 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename) 161 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
|
D | analyze_outcomes.py | 98 with open(outcome_file, 'r', encoding='utf-8') as input_file: 99 for line in input_file:
|
/openthread-2.7.6/third_party/mbedtls/repo/scripts/ |
D | assemble_changelog.py | 399 def finish_output(changelog, output_file, input_file, merged_files): argument 413 check_output(output_temp, input_file, merged_files) 438 with open(options.input, 'rb') as input_file: 439 changelog = ChangeLog(input_file, TextChangelogFormat) 445 with open(filename, 'rb') as input_file: 446 changelog.add_file(input_file)
|
/openthread-2.7.6/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_mpi.function | 440 void mbedtls_mpi_read_file( int radix_X, char * input_file, 453 file = fopen( input_file, "r" );
|