HomeSort by relevance Sort by last modified time
    Searched defs:fuzzer (Results 1 - 25 of 38) sorted by null

1 2

  /external/llvm/lib/Fuzzer/
FuzzerDFSan.h 1 //===- FuzzerDFSan.h - Internal header for the Fuzzer -----------*- C++ -* ===//
41 namespace fuzzer { namespace
45 } // namespace fuzzer
55 namespace fuzzer {
57 } // namespace fuzzer
FuzzerExtFunctions.h 17 namespace fuzzer { namespace
32 } // namespace fuzzer
FuzzerExtFunctionsWeak.cpp 30 using namespace fuzzer;
38 namespace fuzzer { namespace
49 } // namespace fuzzer
FuzzerExtFunctionsDlsym.cpp 20 using namespace fuzzer;
38 namespace fuzzer { namespace
48 } // namespace fuzzer
FuzzerFnAdapter.h 1 //===- FuzzerAdapter.h - Arbitrary function Fuzzer adapter -------*- C++ -*===//
26 namespace fuzzer { namespace
185 } // namespace fuzzer
FuzzerTracePC.h 17 namespace fuzzer { namespace
FuzzerCrossOver.cpp 16 namespace fuzzer { namespace
51 } // namespace fuzzer
FuzzerTracePC.cpp 17 namespace fuzzer { namespace
58 } // namespace fuzzer
62 fuzzer::HandlePC(static_cast<uint32_t>(
FuzzerIO.cpp 22 namespace fuzzer { namespace
143 } // namespace fuzzer
FuzzerMutate.cpp 17 namespace fuzzer { namespace
327 } // namespace fuzzer
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerExtFunctions.h 17 namespace fuzzer { namespace
32 } // namespace fuzzer
FuzzerFnAdapter.h 1 //===- FuzzerAdapter.h - Arbitrary function Fuzzer adapter -------*- C++ -*===//
26 namespace fuzzer { namespace
185 } // namespace fuzzer
FuzzerRandom.h 1 //===- FuzzerRandom.h - Internal header for the Fuzzer ----------*- C++ -* ===//
9 // fuzzer::Random
17 namespace fuzzer { namespace
34 } // namespace fuzzer
FuzzerValueBitMap.h 17 namespace fuzzer { namespace
85 } // namespace fuzzer
FuzzerDefs.h 1 //===- FuzzerDefs.h - Internal header for the Fuzzer ------------*- C++ -* ===//
38 namespace fuzzer { namespace
127 } // namespace fuzzer
FuzzerMutate.h 1 //===- FuzzerMutate.h - Internal header for the Fuzzer ----------*- C++ -* ===//
9 // fuzzer::MutationDispatcher
19 namespace fuzzer { namespace
122 // Temporary dictionary modified by the fuzzer itself,
125 // Persistent dictionary modified by the fuzzer, consists of
143 } // namespace fuzzer
FuzzerTracePC.h 1 //===- FuzzerTracePC.h - Internal header for the Fuzzer ---------*- C++ -* ===//
9 // fuzzer::TracePC
20 namespace fuzzer { namespace
120 } // namespace fuzzer
  /art/tools/dexfuzz/src/dexfuzz/
DexFuzz.java 19 import dexfuzz.fuzzers.Fuzzer;
84 // Create the Fuzzer that uses a particular strategy for fuzzing.
85 Fuzzer fuzzer = null; local
87 fuzzer = new FuzzerMultipleExecute(multipleListener);
89 fuzzer = new FuzzerMultipleNoExecute(multipleListener);
91 fuzzer = new FuzzerSingleExecute(multipleListener);
93 fuzzer = new FuzzerSingleNoExecute(multipleListener);
95 Log.errorAndQuit("Invalid options provided, desired fuzzer unknown.");
100 // Actually run the Fuzzer
    [all...]
  /external/llvm/lib/Fuzzer/test/
FuzzerFnAdapterUnittest.cpp 8 namespace fuzzer { namespace
110 } // namespace fuzzer
  /test/vts/agents/hal/
BinderClientToDriver.cpp 51 sp<IVtsFuzzer> fuzzer = interface_cast<IVtsFuzzer>(binder); local
52 if (!fuzzer.get()) {
58 return fuzzer;
  /test/vts-testcase/fuzz/iface_fuzzer/
ProtoFuzzerMain.cpp 38 namespace fuzzer { namespace in namespace:android::vts
42 // Parameters that passed in to fuzzer.
45 // fuzzer.
120 } // namespace fuzzer
ProtoFuzzerMutator.cpp 29 namespace fuzzer { namespace in namespace:android::vts
172 } // namespace fuzzer
  /test/vts-testcase/fuzz/iface_fuzzer/include/
ProtoFuzzerMutator.h 31 namespace fuzzer { namespace in namespace:android::vts
115 } // namespace fuzzer
ProtoFuzzerUtils.h 32 namespace fuzzer { namespace in namespace:android::vts
66 // Additional non-libfuzzer parameters passed to the fuzzer.
68 // Number of function calls per execution (fixed throughout fuzzer run).
70 // VTS specs supplied to the fuzzer.
99 } // namespace fuzzer
  /test/vts/drivers/hal/common/replayer/
VtsHidlHalReplayer.cpp 149 FuzzerBase* fuzzer = NULL; local
155 // Load spec file and get fuzzer.
165 fuzzer = wrapper_.GetFuzzer(interface_specification_message);
166 if (!fuzzer) {
167 cerr << __func__ << ": couldn't get a fuzzer base class" << endl;
171 if (!fuzzer->GetService(get_stub, hal_service_name.c_str())) {
179 if (!fuzzer->CallFunction(call_msg.func_msg(), callback_socket_name_,
184 if (!fuzzer->VerifyResults(expected_result_msg.func_msg(), result_msg)) {

Completed in 705 milliseconds

1 2