Lines Matching refs:file
129 " files... One or more test data file. If no file is specified\n" \
260 FILE *file;
310 /* Not an option, therefore treat all further arguments as the file
337 file = fopen( test_filename, "r" );
338 if( file == NULL )
340 mbedtls_fprintf( stderr, "Failed to open test file: %s\n",
345 while( !feof( file ) )
355 if( ( ret = get_line( file, buf, sizeof(buf) ) ) != 0 )
366 if( ( ret = get_line( file, buf, sizeof(buf) ) ) != 0 )
393 if( ( ret = get_line( file, buf, sizeof(buf) ) ) != 0 )
463 fclose(file);
469 if( ( ret = get_line( file, buf, sizeof(buf) ) ) != 0 )
478 fclose(file);
480 /* In case we encounter early end of file */