Uses of Interface
com.code_intelligence.jazzer.api.FuzzedDataProvider

Packages that use FuzzedDataProvider
Package
Description
 
  • Uses of FuzzedDataProvider in com.code_intelligence.jazzer.api

    Modifier and Type
    Class
    Description
    final class 
    Replays recorded FuzzedDataProvider invocations that were executed while fuzzing.
    Methods in com.code_intelligence.jazzer.api with parameters of type FuzzedDataProvider
    Modifier and Type
    Method
    Description
    static <T1> void
    Autofuzz.autofuzz(FuzzedDataProvider data, Consumer1<T1> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2> void
    Autofuzz.autofuzz(FuzzedDataProvider data, Consumer2<T1,T2> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2, T3> void
    Autofuzz.autofuzz(FuzzedDataProvider data, Consumer3<T1,T2,T3> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2, T3, T4>
    void
    Autofuzz.autofuzz(FuzzedDataProvider data, Consumer4<T1,T2,T3,T4> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2, T3, T4, T5>
    void
    Autofuzz.autofuzz(FuzzedDataProvider data, Consumer5<T1,T2,T3,T4,T5> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, R> R
    Autofuzz.autofuzz(FuzzedDataProvider data, Function1<T1,R> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2, R> R
    Autofuzz.autofuzz(FuzzedDataProvider data, Function2<T1,T2,R> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2, T3, R>
    R
    Autofuzz.autofuzz(FuzzedDataProvider data, Function3<T1,T2,T3,R> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2, T3, T4, R>
    R
    Autofuzz.autofuzz(FuzzedDataProvider data, Function4<T1,T2,T3,T4,R> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T1, T2, T3, T4, T5, R>
    R
    Autofuzz.autofuzz(FuzzedDataProvider data, Function5<T1,T2,T3,T4,T5,R> func)
    Attempts to invoke func with arguments created automatically from the fuzzer input using only public methods available on the classpath.
    static <T> T
    Autofuzz.consume(FuzzedDataProvider data, Class<T> type)
    Attempts to construct an instance of type from the fuzzer input using only public methods available on the classpath.