Lines Matching refs:results
581 glob_t results; in mraa_file_exist() local
582 results.gl_pathc = 0; in mraa_file_exist()
583 glob(filename, 0, NULL, &results); in mraa_file_exist()
584 int file_found = results.gl_pathc == 1; in mraa_file_exist()
585 globfree(&results); in mraa_file_exist()
662 glob_t results; in mraa_file_unglob() local
664 results.gl_pathc = 0; in mraa_file_unglob()
665 glob(filename, 0, NULL, &results); in mraa_file_unglob()
666 if (results.gl_pathc == 1) in mraa_file_unglob()
667 res = strdup(results.gl_pathv[0]); in mraa_file_unglob()
668 globfree(&results); in mraa_file_unglob()