Home | History | Annotate | Download | only in fuzzer

Lines Matching defs:File

5 // This file is distributed under the University of Illinois Open Source
33 Printf("MERGE: failed to parse the control file (unexpected error)\n");
38 // The control file example:
44 // file2 # One file name per line.
45 // STARTED 0 123 # FileID, file size
68 // Parse file names.
158 // One greedy pass: add the file's features to AllFeatures.
159 // If new features were added, add this file to NewFiles.
173 for (auto &File : Files) {
175 OS << File.Name << " size: " << File.Size << " features: ";
176 for (auto Feature : File.Features)
184 for (auto &File : Files)
185 S.insert(File.Features.begin(), File.Features.end());
197 assert(Tmp == "size:" && "Corrupt summary file");
199 ISS1 >> N; // File Size
201 assert(Tmp == "features:" && "Corrupt summary file");
210 Printf("MERGE-INNER: using the control file '%s'\n", CFPath.c_str());
270 ControlFile << SF.File << "\n";
272 Printf("MERGE-OUTER: failed to write to the control file: %s\n",
296 Printf("MERGE-OUTER: non-empty control file provided: '%s'\n",
301 Printf("MERGE-OUTER: control file ok, %zd files total,"
302 " first not processed file %zd\n",
315 Printf("MERGE-OUTER: bad control file, will overwrite it\n");
320 // The supplied control file is empty or bad, create a fresh one.
356 // Read the control file and do the merge.
360 Printf("MERGE-OUTER: the control file has %zd bytes\n", (size_t)IF.tellg());
364 Printf("MERGE-OUTER: consumed %zdMb (%zdMb rss) to parse the control file\n",
385 // We are done, delete the control file if it was a temporary one.