Uses of Interface
com.code_intelligence.jazzer.api.FuzzedDataProvider
Packages that use FuzzedDataProvider
-
Uses of FuzzedDataProvider in com.code_intelligence.jazzer.api
Classes in com.code_intelligence.jazzer.api that implement FuzzedDataProviderModifier and TypeClassDescriptionfinal classReplays recorded FuzzedDataProvider invocations that were executed while fuzzing.Methods in com.code_intelligence.jazzer.api with parameters of type FuzzedDataProviderModifier and TypeMethodDescriptionstatic <T1> voidAutofuzz.autofuzz(FuzzedDataProvider data, Consumer1<T1> func) Attempts to invokefuncwith 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 invokefuncwith 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 invokefuncwith arguments created automatically from the fuzzer input using only public methods available on the classpath.static <T1,T2, T3, T4>
voidAutofuzz.autofuzz(FuzzedDataProvider data, Consumer4<T1, T2, T3, T4> func) Attempts to invokefuncwith arguments created automatically from the fuzzer input using only public methods available on the classpath.static <T1,T2, T3, T4, T5>
voidAutofuzz.autofuzz(FuzzedDataProvider data, Consumer5<T1, T2, T3, T4, T5> func) Attempts to invokefuncwith 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 invokefuncwith 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 invokefuncwith arguments created automatically from the fuzzer input using only public methods available on the classpath.static <T1,T2, T3, R>
RAutofuzz.autofuzz(FuzzedDataProvider data, Function3<T1, T2, T3, R> func) Attempts to invokefuncwith arguments created automatically from the fuzzer input using only public methods available on the classpath.static <T1,T2, T3, T4, R>
RAutofuzz.autofuzz(FuzzedDataProvider data, Function4<T1, T2, T3, T4, R> func) Attempts to invokefuncwith arguments created automatically from the fuzzer input using only public methods available on the classpath.static <T1,T2, T3, T4, T5, R>
RAutofuzz.autofuzz(FuzzedDataProvider data, Function5<T1, T2, T3, T4, T5, R> func) Attempts to invokefuncwith arguments created automatically from the fuzzer input using only public methods available on the classpath.static <T> TAutofuzz.consume(FuzzedDataProvider data, Class<T> type) Attempts to construct an instance oftypefrom the fuzzer input using only public methods available on the classpath.