/aosp_15_r20/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/mutation/mutator/lang/ |
H A D | FloatingPointMutatorTest.java | 215 SerializingMutator<Float> mutator = in floatInitCasesFullRange() local 232 SerializingMutator<Float> mutator = in floatInitCasesMinusOneToOne() local 248 SerializingMutator<Float> mutator = in floatInitCasesMinusMinToMin() local 263 SerializingMutator<Float> mutator = in floatInitCasesMaxToInf() local 276 SerializingMutator<Float> mutator = in floatInitCasesMinusInfToMinusMax() local 289 SerializingMutator<Float> mutator = in floatInitCasesFullRangeWithoutNaN() local 312 testFloatInitCases(SerializingMutator<Float> mutator, Stream<Object> prngValues, float expected, in testFloatInitCases() 331 SerializingMutator<Float> mutator = in floatMutateSanityChecksFullRangeCases() local 365 SerializingMutator<Float> mutator = in floatMutateLimitedRangeCases() local 383 SerializingMutator<Float> mutator = in floatMutateLimitedRangeCasesWithNaN() local [all …]
|
H A D | ByteArrayMutatorTest.java | 44 SerializingMutator<byte[]> mutator = in testBasicFunction() local 64 SerializingMutator<byte[]> mutator = in testMaxLength() local 85 SerializingMutator<byte[]> mutator = in testMaxLengthInitClamp() local 100 SerializingMutator<byte[]> mutator = in testMinLengthInitClamp() local 115 SerializingMutator<byte[]> mutator = in testMinLength() local 137 SerializingMutator<byte[]> mutator = in testCrossOver() local
|
H A D | StringMutatorTest.java | 109 SerializingMutator<String> mutator = in testMinLengthInit() local 122 SerializingMutator<String> mutator = in testMaxLengthInit() local 135 SerializingMutator<String> mutator = in testMinLengthMutate() local 155 SerializingMutator<String> mutator = in testMaxLengthMutate() local 175 SerializingMutator<String> mutator = in testMultibyteCharacters() local
|
H A D | NullableMutatorTest.java | 34 SerializingMutator<Boolean> mutator = in testNullable() local 66 SerializingMutator<Boolean> mutator = in testNotNull() local 75 SerializingMutator<Boolean> mutator = factory.createOrThrow(boolean.class); in testPrimitive() local 81 SerializingMutator<Boolean> mutator = in testCrossOver() local
|
H A D | BooleanMutatorTest.java | 32 SerializingMutator<Boolean> mutator = LangMutators.newFactory().createOrThrow(boolean.class); in testPrimitive() local 49 SerializingMutator<Boolean> mutator = in testBoxed() local 68 SerializingMutator<Boolean> mutator = LangMutators.newFactory().createOrThrow(boolean.class); in testCrossOver() local
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/fuzz/ |
D | mutators_byteslice.go | 8 func byteSliceRemoveBytes(m *mutator, b []byte) []byte { 21 func byteSliceInsertRandomBytes(m *mutator, b []byte) []byte { 37 func byteSliceDuplicateBytes(m *mutator, b []byte) []byte { 70 func byteSliceOverwriteBytes(m *mutator, b []byte) []byte { 85 func byteSliceBitFlip(m *mutator, b []byte) []byte { 95 func byteSliceXORByte(m *mutator, b []byte) []byte { 108 func byteSliceSwapByte(m *mutator, b []byte) []byte { 122 func byteSliceArithmeticUint8(m *mutator, b []byte) []byte { 137 func byteSliceArithmeticUint16(m *mutator, b []byte) []byte { 152 func byteSliceArithmeticUint32(m *mutator, b []byte) []byte { [all …]
|
D | mutator.go | 14 type mutator struct { struct 15 r mutatorRand 16 scratch []byte // scratch slice to avoid additional allocations 23 func (m *mutator) rand(n int) int { 27 func (m *mutator) randByteOrder() binary.ByteOrder { 36 func (m *mutator) chooseLen(n int) int { 48 func (m *mutator) mutate(vals []any, maxBytes int) { 119 func (m *mutator) mutateInt(v, maxValue int64) int64 { 150 func (m *mutator) mutateUInt(v, maxValue uint64) uint64 { 182 func (m *mutator) mutateFloat(v, maxValue float64) float64 { [all …]
|
/aosp_15_r20/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/mutation/combinator/ |
H A D | MutatorCombinatorsTest.java | 57 InPlaceMutator<Foo> mutator = in testMutateProperty() local 80 InPlaceMutator<Foo> mutator = in testCrossOverProperty() local 106 InPlaceMutator<Foo> mutator = mutateViaView(Foo::getList, new InPlaceMutator<List<Integer>>() { in testMutateViaView() local 148 InPlaceMutator<Foo> mutator = mutateViaView(Foo::getList, mockCrossOverInPlace((a, b) -> { in testCrossOverViaView() local 188 InPlaceMutator<Foo> mutator = combine(valueMutator, listMutator); in testMutateCombine() local 221 InPlaceMutator<Foo> mutator = combine(valueMutator, listMutator); in testCrossOverCombine() local 275 SerializingInPlaceMutator<Foo> mutator = in testMutateAssemble() local 324 SerializingInPlaceMutator<Foo> mutator = in testCrossOverAssemble() local 362 SerializingMutator<String> mutator = in testMutateThenMapToImmutable() local 402 SerializingMutator<String> mutator = in testCrossOverThenMapToImmutable() local [all …]
|
/aosp_15_r20/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/mutation/mutator/collection/ |
H A D | ListMutatorTest.java | 49 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testInit() local 69 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = in testInitMaxSize() local 83 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testRemoveSingleElement() local 100 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testRemoveChunk() local 117 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testAddSingleElement() local 138 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testAddChunk() local 159 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testChangeSingleElement() local 181 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testChangeChunk() local 204 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testCrossOverEmptyLists() local 214 SerializingMutator<@NotNull List<@NotNull Integer>> mutator = defaultListMutator(); in testCrossOverInsertChunk() local [all …]
|
H A D | MapMutatorTest.java | 54 SerializingMutator<Map<String, String>> mutator = in mapInitInsert() local 106 SerializingMutator<Map<Integer, Integer>> mutator = in mapDelete() local 128 SerializingMutator<Map<Integer, Integer>> mutator = in mapMutateValues() local 160 SerializingMutator<Map<Integer, Integer>> mutator = in mapMutateKeys() local 192 SerializingMutator<Map<Boolean, Boolean>> mutator = in mapMutateKeysFallbackToValues() local 219 SerializingMutator<@NotNull Map<@NotNull Integer, @NotNull Integer>> mutator = in testCrossOverEmptyMaps() local 230 SerializingMutator<@NotNull Map<@NotNull Integer, @NotNull Integer>> mutator = in testCrossOverInsertChunk() local 254 SerializingMutator<@NotNull Map<@NotNull Integer, @NotNull Integer>> mutator = in testCrossOverOverwriteChunk() local 279 SerializingMutator<@NotNull Map<@NotNull List<@NotNull Integer>, @NotNull Integer>> mutator = in testCrossOverCrossOverChunkKeys() local 320 SerializingMutator<@NotNull Map<@NotNull Integer, @NotNull List<@NotNull Integer>>> mutator = in testCrossOverCrossOverChunkValues() local
|
/aosp_15_r20/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/mutation/mutator/proto/ |
H A D | BuilderMutatorProto3Test.java | 60 InPlaceMutator<PrimitiveField3.Builder> mutator = in testPrimitiveField() local 80 InPlaceMutator<EnumField3.Builder> mutator = in testEnumField() local 97 InPlaceMutator<EnumFieldOutside3.Builder> mutator = in testEnumFieldOutside() local 114 InPlaceMutator<EnumFieldOne3.Builder> mutator = in testEnumFieldWithOneValue() local 131 InPlaceMutator<EnumFieldRepeated3.Builder> mutator = in testRepeatedEnumField() local 163 InPlaceMutator<OptionalPrimitiveField3.Builder> mutator = in testOptionalPrimitiveField() local 211 InPlaceMutator<RepeatedPrimitiveField3.Builder> mutator = in testRepeatedPrimitiveField() local 258 InPlaceMutator<MessageField3.Builder> mutator = in testMessageField() local 301 InPlaceMutator<RepeatedMessageField3.Builder> mutator = in testRepeatedMessageField() local 358 InPlaceMutator<RecursiveMessageField3.Builder> mutator = in testRecursiveMessageField() local [all …]
|
H A D | BuilderMutatorProto2Test.java | 47 InPlaceMutator<PrimitiveField2.Builder> mutator = in testPrimitiveField() local 95 InPlaceMutator<RequiredPrimitiveField2.Builder> mutator = in testRequiredPrimitiveField() local 115 InPlaceMutator<RepeatedPrimitiveField2.Builder> mutator = in testRepeatedPrimitiveField() local 162 InPlaceMutator<MessageField2.Builder> mutator = in testMessageField() local 206 InPlaceMutator<RepeatedOptionalMessageField2.Builder> mutator = in testRepeatedOptionalMessageField() local 243 InPlaceMutator<RepeatedMessageField2.Builder> mutator = in testRepeatedRequiredMessageField() local 300 InPlaceMutator<RecursiveMessageField2.Builder> mutator = in testRecursiveMessageField() local 359 InPlaceMutator<OneOfField2.Builder> mutator = in testOneOfField2() local
|
H A D | MessageMutatorTest.java | 46 SerializingMutator<PrimitiveField3> mutator = FACTORY.createOrThrow(PrimitiveField3.class); in testSimpleMessage() local 79 SerializingMutator<ExtendedMessage2> mutator = in testIncompleteMessageWithRequiredFields() local
|
/aosp_15_r20/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/file/openers/ |
H A D | StreamMutationOpenerTest.java | 66 try (StreamMutationOpener.Mutator mutator = storage.open(uri, StreamMutationOpener.create())) { in okIfFileDoesNotExist() 88 try (StreamMutationOpener.Mutator mutator = storage.open(uri, StreamMutationOpener.create())) { in willFailToOverwriteDirectory() 108 try (StreamMutationOpener.Mutator mutator = storage.open(uri, StreamMutationOpener.create())) { in canMutate() 130 try (StreamMutationOpener.Mutator mutator = storage.open(uri, StreamMutationOpener.create())) { in canMutate_butNotCommit() 153 try (StreamMutationOpener.Mutator mutator = storage.open(uri, StreamMutationOpener.create())) { in canMutate_repeatedly() 183 try (StreamMutationOpener.Mutator mutator = in canMutate_withSync() 206 try (StreamMutationOpener.Mutator mutator = in okIfFileDoesNotExist_withExclusiveLock() 236 try (StreamMutationOpener.Mutator mutator = in canMutate_withExclusiveLock() 268 try (StreamMutationOpener.Mutator mutator = in rollsBack_afterIOException() 297 try (StreamMutationOpener.Mutator mutator = storage.open(uri, StreamMutationOpener.create())) { in rollsBack_afterRuntimeException() [all …]
|
H A D | StreamMutationOpenerAndroidTest.java | 76 try (StreamMutationOpener.Mutator mutator = storage.open(uri, StreamMutationOpener.create())) { in interleaveMutations_withoutLocking_lacksIsolation() 109 try (StreamMutationOpener.Mutator mutator = in run() 151 try (StreamMutationOpener.Mutator mutator = in interleaveMutations_withLocking() 175 try (StreamMutationOpener.Mutator mutator = in run()
|
/aosp_15_r20/build/soong/android/ |
H A D | register.go | 89 type mutator struct { struct 90 name string 91 bottomUpMutator blueprint.BottomUpMutator 92 topDownMutator blueprint.TopDownMutator 93 transitionMutator blueprint.TransitionMutator 95 usesRename bool 96 usesReverseDependencies bool 97 usesReplaceDependencies bool 98 usesCreateModule bool 99 mutatesDependencies bool [all …]
|
/aosp_15_r20/external/libprotobuf-mutator/src/ |
H A D | mutator_test.cc | 402 ReducedTestMutator mutator; in Mutate() local 420 ReducedTestMutator mutator; in CrossOver() local 518 TestMutator mutator(true); in TEST_P() local 541 TestMutator mutator(false); in TEST_P() local 591 TestMutator mutator(false); in TYPED_TEST() local 619 TestMutator mutator(false); in TYPED_TEST() local 663 TestMutator mutator(false); in TYPED_TEST() local 701 TestMutator mutator(false); in TYPED_TEST() local 707 TestMutator mutator(false); in TYPED_TEST() local 713 TestMutator mutator(false); in TYPED_TEST() local [all …]
|
/aosp_15_r20/external/grpc-grpc/src/core/lib/iomgr/ |
H A D | socket_mutator.cc | 31 void grpc_socket_mutator_init(grpc_socket_mutator* mutator, in grpc_socket_mutator_init() 37 grpc_socket_mutator* grpc_socket_mutator_ref(grpc_socket_mutator* mutator) { in grpc_socket_mutator_ref() 42 bool grpc_socket_mutator_mutate_fd(grpc_socket_mutator* mutator, int fd, in grpc_socket_mutator_mutate_fd() 72 void grpc_socket_mutator_unref(grpc_socket_mutator* mutator) { in grpc_socket_mutator_unref() 94 grpc_arg grpc_socket_mutator_to_arg(grpc_socket_mutator* mutator) { in grpc_socket_mutator_to_arg()
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/iomgr/ |
D | socket_mutator.cc | 31 void grpc_socket_mutator_init(grpc_socket_mutator* mutator, in grpc_socket_mutator_init() 37 grpc_socket_mutator* grpc_socket_mutator_ref(grpc_socket_mutator* mutator) { in grpc_socket_mutator_ref() 42 bool grpc_socket_mutator_mutate_fd(grpc_socket_mutator* mutator, int fd, in grpc_socket_mutator_mutate_fd() 72 void grpc_socket_mutator_unref(grpc_socket_mutator* mutator) { in grpc_socket_mutator_unref() 94 grpc_arg grpc_socket_mutator_to_arg(grpc_socket_mutator* mutator) { in grpc_socket_mutator_to_arg()
|
/aosp_15_r20/external/cronet/testing/libfuzzer/ |
H A D | libprotobuf-mutator.md | 124 ### Define the Fuzzed Format 142 ### Write the Fuzz Target and Conversion Code 198 ### Define the GN Target 222 ### Tips For Grammar Based Fuzzers
|
/aosp_15_r20/external/grpc-grpc/test/core/event_engine/posix/ |
H A D | tcp_posix_socket_utils_test.cc | 51 bool MutateFd(int fd, grpc_socket_mutator* mutator) { in MutateFd() 71 grpc_socket_mutator* mutator) { in MutateFd2() 90 void DestroyTestMutator(grpc_socket_mutator* mutator) { in DestroyTestMutator() 121 struct test_socket_mutator mutator; in TEST() local
|
/aosp_15_r20/external/grpc-grpc/test/core/iomgr/ |
H A D | socket_utils_test.cc | 46 static bool mutate_fd(int fd, grpc_socket_mutator* mutator) { in mutate_fd() 66 grpc_socket_mutator* mutator) { in mutate_fd_2() 85 static void destroy_test_mutator(grpc_socket_mutator* mutator) { in destroy_test_mutator() 110 struct test_socket_mutator mutator; in test_with_vtable() local
|
/aosp_15_r20/art/tools/dexfuzz/src/dexfuzz/program/ |
H A D | Program.java | 239 private void registerMutator(CodeMutator mutator) { in registerMutator() 245 mutatorsLookupByClass.put(mutator.getClass(), mutator); in registerMutator() local 412 CodeMutator mutator = mutators.get(mutatorIdx); in mutateAMutatableCode() local 527 CodeMutator mutator = mutatorsLookupByClass.get(mutation.mutatorClass); in applyMutationsFromList() local
|
/aosp_15_r20/external/AFLplusplus/src/ |
H A D | afl-fuzz-mutators.c | 76 struct custom_mutator *mutator; in setup_custom_mutators() local 180 struct custom_mutator *mutator = ck_alloc(sizeof(struct custom_mutator)); in load_custom_mutator() local 454 struct custom_mutator *mutator) { in trim_case_custom()
|
/aosp_15_r20/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/mutation/ |
H A D | ArgumentsMutatorTest.java | 53 ArgumentsMutator mutator = maybeMutator.get(); in testStaticMethod() local 159 ArgumentsMutator mutator = maybeMutator.get(); in testInstanceMethod() local 260 ArgumentsMutator mutator = maybeMutator.get(); in testCrossOver() local
|