Lines Matching refs:file
63 " files... One or more test data files. If no file is\n" \
65 " file is used:\n" \
75 * \brief Read a line from the passed file pointer.
318 /** \brief Write the description of the test case to the outcome CSV file.
320 * \param outcome_file The file to write to.
360 * Ignore errors: writing the outcome file is on a best-effort basis. */
365 /** \brief Write the result of the test case to the outcome CSV file.
367 * \param outcome_file The file to write to.
386 * Ignore errors: writing the outcome file is on a best-effort basis. */
481 * supplied or default data file.
504 FILE *file;
548 mbedtls_fprintf(stderr, "Unable to open outcome file. Continuing anyway.\n");
563 /* Not an option, therefore treat all further arguments as the file
593 file = fopen(test_filename, "r");
594 if (file == NULL) {
595 mbedtls_fprintf(stderr, "Failed to open test file: %s\n",
603 while (!feof(file)) {
612 if ((ret = get_line(file, buf, sizeof(buf))) != 0) {
628 if ((ret = get_line(file, buf, sizeof(buf))) != 0) {
648 if ((ret = get_line(file, buf, sizeof(buf))) != 0) {
749 fclose(file);
753 fclose(file);
759 fclose(file);