HomeSort by relevance Sort by last modified time
    Searched defs:Fuzzer (Results 1 - 3 of 3) sorted by null

  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInternal.h 1 //===- FuzzerInternal.h - Internal header for the Fuzzer --------*- C++ -* ===//
9 // Define the main class fuzzer::Fuzzer and most functions.
28 namespace fuzzer { namespace
32 class Fuzzer {
55 Fuzzer(UserCallback CB, InputCorpus &Corpus, MutationDispatcher &MD,
57 ~Fuzzer();
138 void PrepareCounters(Fuzzer::Coverage *C);
139 bool RecordMaxCoverage(Fuzzer::Coverage *C);
174 }; // namespace fuzzer
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 58 public abstract class Fuzzer {
82 protected Fuzzer(BaseListener listener) {
95 * Call this after fuzzer execution to print out timing results.
191 * Called from each Fuzzer subclass that we can instantiate. Parses the program, fuzzes it,
227 Log.errorAndQuit("Your Fuzzer subclass called execute() "
  /external/llvm/lib/Fuzzer/
FuzzerLoop.cpp 1 //===- FuzzerLoop.cpp - Fuzzer's main loop --------------------------------===//
9 // Fuzzer's main loop.
34 namespace fuzzer { namespace
37 thread_local bool Fuzzer::IsMyThread;
52 // Only one Fuzzer per process.
53 static Fuzzer *F;
68 static void Prepare(const FuzzingOptions &Options, Fuzzer::Coverage *C) {
77 static bool RecordMax(const FuzzingOptions &Options, Fuzzer::Coverage *C) {
146 Fuzzer::Fuzzer(UserCallback CB, MutationDispatcher &MD, FuzzingOptions Options
    [all...]

Completed in 455 milliseconds