HomeSort by relevance Sort by last modified time
    Searched refs:mutator (Results 1 - 25 of 40) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/java/util/
AbstractCollectionTest.java 42 Thread mutator = new Thread(new Runnable() { local
56 mutator.start();
58 mutator.join();
  /test/vts-testcase/fuzz/iface_fuzzer/
ProtoFuzzerMain.cpp 45 static unique_ptr<ProtoFuzzerMutator> mutator; member in namespace:android::vts::fuzzer
91 mutator = make_unique<ProtoFuzzerMutator>(
111 mutator->RandomGen(runner->GetOpenedIfaces(), params.exec_size_);
113 mutator->Mutate(runner->GetOpenedIfaces(), &exec_spec);
  /bionic/libc/private/
WriteProtected.h 73 template <typename Mutator>
74 void mutate(Mutator mutator) {
79 mutator(&contents.value);
  /build/soong/android/
mutator.go 30 func registerMutatorsToContext(ctx *blueprint.Context, mutators []*mutator) {
65 mutators []*mutator
178 mutator := &mutator{name: name, bottomUpMutator: f}
179 x.mutators = append(x.mutators, mutator)
180 return mutator
193 mutator := &mutator{name: name, topDownMutator: f}
194 x.mutators = append(x.mutators, mutator)
195 return mutator
    [all...]
register.go 36 type mutator struct { type
43 var mutators []*mutator
config.go 228 // TestConfig returns a Config object suitable for using for tests that need to run the arch mutator
  /art/tools/dexfuzz/src/dexfuzz/program/
Program.java 124 * Used if we're loading mutations from a file, so we can find the correct mutator.
239 private void registerMutator(CodeMutator mutator) {
240 if (mutator.canBeTriggered()) {
241 Log.debug("Registering mutator " + mutator.getClass().getSimpleName());
242 mutators.add(mutator);
245 mutatorsLookupByClass.put(mutator.getClass(), mutator); local
412 CodeMutator mutator = mutators.get(mutatorIdx); local
413 Log.info("Running mutator " + mutator.getClass().getSimpleName())
527 CodeMutator mutator = mutatorsLookupByClass.get(mutation.mutatorClass); local
    [all...]
  /build/blueprint/
context.go 81 depsModified uint32 // positive if a mutator modified the dependencies
222 // Mutator is the axis on which this variation applies, i.e. "arch" or "link"
223 Mutator string
229 // A variationMap stores a map of Mutator to Variation to specify a variant of a module.
309 // generation for the module. If a Mutator splits a module into multiple variants,
442 // RegisterTopDownMutator registers a mutator that will be invoked to propagate dependency info
443 // top-down between Modules. Each registered mutator is invoked in registration order (mixing
447 // The mutator type names given here must be unique to all top down mutators in
450 // Returns a MutatorHandle, on which Parallel can be called to set the mutator to visit modules in
452 func (c *Context) RegisterTopDownMutator(name string, mutator TopDownMutator) MutatorHandle
    [all...]
module_ctx.go 34 // A Module can be split into multiple Modules by a Mutator. All existing
36 // modified as necessary by the Mutator.
92 // initial blueprint parsing. To change the name later a mutator must call
565 // A Mutator function is called for each Module, and can use
571 // The Mutator function should only modify members of properties structs, and not
573 // if a second Mutator chooses to split the module a second time.
579 // used to transfer information on a dependency between the mutator that called AddDependency
603 // when the Mutator is later called on it, the dependency of the depending module will
635 panic("module already has variations from this mutator")
657 // Does not affect the ordering of the current mutator pass, but will be ordere
    [all...]
  /art/runtime/
common_runtime_test.h 124 template <typename Mutator>
125 bool MutateDexFile(File* output_dex, const std::string& input_jar, const Mutator& mutator) {
139 mutator(dex_file);
  /external/eigen/unsupported/test/
cxx11_runqueue.cpp 125 std::thread mutator([&q, &done]() {
154 mutator.join();
  /prebuilts/go/darwin-x86/src/runtime/
mbarrier.go 43 // The two shades and the condition work together to prevent a mutator
46 // 1. shade(*slot) prevents a mutator from hiding an object by moving
50 // 2. shade(ptr) prevents a mutator from hiding an object by moving
73 // the slot doesn't concurrently change color without the mutator
76 // Consider the following example where the mutator writes into
82 // Mutator thread GC thread
92 // barriers, which will slow down both the mutator and the GC, we always grey
97 // heap. On relaxed memory machines, it's possible for a mutator to
102 // mark the object, even though it's reachable. However, the mutator
mgc.go 7 // The GC runs concurrently with mutator threads, is type accurate (aka precise), allows multiple
35 // (from _GCoff), enabling the write barrier, enabling mutator
270 // gcBlackenEnabled is 1 if mutator assists and background mark
307 // is mutator assists, which happen in response to allocations and are
343 // work to do in mutator assists and background marking.
370 // the background scan and stolen by mutator assists. This is
375 // assistTime is the nanoseconds spent in mutator assists
408 // bytes that should be performed by mutator assists. This is
583 // Compute the mutator assist ratio so by the time the mutator
    [all...]
mgcmark.go 482 // do one of these before letting the mutator allocate
969 // mutator assists can draw on it.
    [all...]
mgcwork.go 268 // GC can inspect them. This helps reduce the mutator's
  /prebuilts/go/linux-x86/src/runtime/
mbarrier.go 43 // The two shades and the condition work together to prevent a mutator
46 // 1. shade(*slot) prevents a mutator from hiding an object by moving
50 // 2. shade(ptr) prevents a mutator from hiding an object by moving
73 // the slot doesn't concurrently change color without the mutator
76 // Consider the following example where the mutator writes into
82 // Mutator thread GC thread
92 // barriers, which will slow down both the mutator and the GC, we always grey
97 // heap. On relaxed memory machines, it's possible for a mutator to
102 // mark the object, even though it's reachable. However, the mutator
mgc.go 7 // The GC runs concurrently with mutator threads, is type accurate (aka precise), allows multiple
35 // (from _GCoff), enabling the write barrier, enabling mutator
270 // gcBlackenEnabled is 1 if mutator assists and background mark
307 // is mutator assists, which happen in response to allocations and are
343 // work to do in mutator assists and background marking.
370 // the background scan and stolen by mutator assists. This is
375 // assistTime is the nanoseconds spent in mutator assists
408 // bytes that should be performed by mutator assists. This is
583 // Compute the mutator assist ratio so by the time the mutator
    [all...]
mgcmark.go 482 // do one of these before letting the mutator allocate
969 // mutator assists can draw on it.
    [all...]
mgcwork.go 268 // GC can inspect them. This helps reduce the mutator's
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 3289 String mutator; local
    [all...]
  /build/soong/cc/
ndk_library.go 91 // Private property for use by the mutator that splits per-API level.
sanitize.go 587 // indirectly (via a mutator) sets the bool ptr to true, and you can't
  /external/wayland-protocols/
wayland_protocol_codegen.go 157 // mutator context to the build graph.
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /external/guice/extensions/persist/lib/
commons-collections.jar 

Completed in 1547 milliseconds

1 2