reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

projects/compiler-rt/lib/fuzzer/FuzzerDefs.h
  169 struct InputInfo;

References

projects/compiler-rt/lib/fuzzer/FuzzerCorpus.h
   88   InputInfo *AddToCorpus(const Unit &U, size_t NumFeatures, bool MayDeleteFile,
   96     InputInfo &II = *Inputs.back();
  157   void Replace(InputInfo *II, const Unit &U) {
  170   InputInfo &ChooseUnitToMutate(Random &Rand) {
  171     InputInfo &II = *Inputs[ChooseUnitIdxToMutate(Rand)];
  204   void DeleteFile(const InputInfo &II) {
  210     InputInfo &II = *Inputs[Idx];
  224         InputInfo &II = *Inputs[OldIdx];
projects/compiler-rt/lib/fuzzer/FuzzerInternal.h
   70               InputInfo *II = nullptr, bool *FoundUniqFeatures = nullptr);
   98   void ReportNewCoverage(InputInfo *II, const Unit &U);
projects/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
  466                     InputInfo *II, bool *FoundUniqFeatures) {
  605 void Fuzzer::ReportNewCoverage(InputInfo *II, const Unit &U) {
  663   auto &II = Corpus.ChooseUnitToMutate(MD.GetRand());