Lines Matching defs:next
287 /* continue processing with the next file from directory */
289 BIO *next;
291 if ((next = get_next_file(dirpath, &dirctx)) != NULL) {
293 in = next;
444 BIO *next;
501 next = process_include(include_path, &dirctx, &dirpath);
507 next = BIO_new_file(include_path, "r");
511 if (next != NULL) {
516 BIO_free(next);
522 BIO_free(next);
526 in = next;
759 * e is the 'next point after'.
812 * Returns next BIO to process and in case of a directory
819 BIO *next;
834 if ((next = get_next_file(include, dirctx)) != NULL)
836 return next;
839 next = BIO_new_file(include, "r");
840 return next;
844 * Get next file from the directory path.
845 * Returns BIO of the next file to read and updates dirctx.