Home | History | Annotate | Download | only in honggfuzz

Lines Matching full:fname

72         char fname[PATH_MAX];
73 snprintf(fname, sizeof(fname), "%s/%s", hfuzz->io.inputDir, entry->d_name);
74 LOG_D("Analyzing file '%s'", fname);
77 if (stat(fname, &st) == -1) {
78 LOG_W("Couldn't stat() the '%s' file", fname);
82 LOG_D("'%s' is not a regular file, skipping", fname);
87 fname, (int64_t)st.st_size, (int64_t)hfuzz->maxFileSz);
121 bool input_getNext(run_t* run, char* fname, bool rewind) {
150 snprintf(fname, PATH_MAX, "%s/%s", run->global->io.inputDir, entry->d_name);
153 if (stat(fname, &st) == -1) {
154 LOG_W("Couldn't stat() the '%s' file", fname);
158 LOG_D("'%s' is not a regular file, skipping", fname);