Searched defs:listener (Results 1 - 25 of 26) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/fuzzers/
H A DFuzzerSingleExecute.java26 public FuzzerSingleExecute(BaseListener listener) { argument
27 super(listener);
H A DFuzzerSingleNoExecute.java25 public FuzzerSingleNoExecute(BaseListener listener) { argument
26 super(listener);
H A DFuzzerMultiple.java29 protected FuzzerMultiple(BaseListener listener) { argument
30 super(listener);
40 listener.handleFuzzingFile(inputFile);
H A DFuzzerMultipleExecute.java27 public FuzzerMultipleExecute(BaseListener listener) { argument
28 super(listener);
42 listener.handleIterationStarted(iterations);
47 listener.handleIterationFinished(iterations);
49 listener.handleSummary();
H A DFuzzerMultipleNoExecute.java26 public FuzzerMultipleNoExecute(BaseListener listener) { argument
27 super(listener);
40 listener.handleIterationStarted(iterations);
42 listener.handleIterationFinished(iterations);
44 listener.handleSummary();
H A DFuzzerSingle.java26 protected FuzzerSingle(BaseListener listener) { argument
27 super(listener);
H A DFuzzer.java80 protected BaseListener listener; field in class:Fuzzer
82 protected Fuzzer(BaseListener listener) { argument
85 this.listener = listener;
99 timerDexInput.printTime(listener);
100 timerProgGen.printTime(listener);
101 timerMutation.printTime(listener);
102 timerDexOutput.printTime(listener);
103 timerChecksumCalc.printTime(listener);
104 totalTimer.printTime(listener);
[all...]
/art/tools/dexfuzz/src/dexfuzz/executors/
H A DArm64InterpreterExecutor.java23 public Arm64InterpreterExecutor(BaseListener listener, Device device) { argument
24 super("ARM64 Interpreter", 30, listener, Architecture.ARM64, device,
H A DArm64OptimizingBackendExecutor.java23 public Arm64OptimizingBackendExecutor(BaseListener listener, Device device) { argument
24 super("ARM64 Optimizing Backend", 5, listener, Architecture.ARM64, device,
H A DArmInterpreterExecutor.java23 public ArmInterpreterExecutor(BaseListener listener, Device device) { argument
24 super("ARM Interpreter", 30, listener, Architecture.ARM, device,
H A DArmOptimizingBackendExecutor.java23 public ArmOptimizingBackendExecutor(BaseListener listener, Device device) { argument
24 super("ARM Optimizing Backend", 5, listener, Architecture.ARM, device,
H A DMips64InterpreterExecutor.java23 public Mips64InterpreterExecutor(BaseListener listener, Device device) { argument
24 super("MIPS64 Interpreter", 30, listener, Architecture.MIPS64, device,
H A DMips64OptimizingBackendExecutor.java23 public Mips64OptimizingBackendExecutor(BaseListener listener, Device device) { argument
24 super("MIPS64 Optimizing Backend", 5, listener, Architecture.MIPS64, device,
H A DMipsInterpreterExecutor.java23 public MipsInterpreterExecutor(BaseListener listener, Device device) { argument
24 super("MIPS Interpreter", 30, listener, Architecture.MIPS, device,
H A DMipsOptimizingBackendExecutor.java23 public MipsOptimizingBackendExecutor(BaseListener listener, Device device) { argument
24 super("MIPS Optimizing Backend", 5, listener, Architecture.MIPS, device,
H A DX86InterpreterExecutor.java24 public X86InterpreterExecutor(BaseListener listener, Device device) { argument
25 super("x86 Interpreter", 30, listener, Architecture.X86, device,
H A DX86OptimizingBackendExecutor.java24 public X86OptimizingBackendExecutor(BaseListener listener, Device device) { argument
25 super("x86 Optimizing Backend", 5, listener, Architecture.X86, device,
H A DX86_64InterpreterExecutor.java23 public X86_64InterpreterExecutor(BaseListener listener, Device device) { argument
24 super("x86_64 Interpreter", 30, listener, Architecture.X86_64, device,
H A DX86_64OptimizingBackendExecutor.java23 public X86_64OptimizingBackendExecutor(BaseListener listener, Device device) { argument
24 super("x86_64 Optimizing Backend", 5, listener, Architecture.X86_64, device,
H A DExecutor.java37 protected BaseListener listener; field in class:Executor
44 protected Executor(String name, int timeout, BaseListener listener, Architecture architecture, argument
55 this.listener = listener;
128 listener.handleHostVerificationSigabort(verificationResult);
142 listener.handleDumpVerify(line.replaceFirst(".*(cc|h):\\d+] ", ""));
148 listener.handleFailedHostVerification(verificationResult);
/art/tools/dexfuzz/src/dexfuzz/
H A DTimer.java67 public void printTime(BaseListener listener) { argument
68 listener.handleTiming(name, ((float)elapsedTime) / 1000.0f);
/art/runtime/
H A Dinstrumentation_test.cc176 TestInstrumentationListener listener; local
179 ScopedSuspendAll ssa("Add instrumentation listener");
180 instr->AddListener(&listener, instrumentation_event);
187 // Check the listener is registered and is notified of the event.
189 EXPECT_FALSE(DidListenerReceiveEvent(listener, instrumentation_event));
191 EXPECT_TRUE(DidListenerReceiveEvent(listener, instrumentation_event));
193 listener.Reset();
196 ScopedSuspendAll ssa("Remove instrumentation listener");
197 instr->RemoveListener(&listener, instrumentation_event);
200 // Check the listener i
366 DidListenerReceiveEvent(const TestInstrumentationListener& listener, uint32_t event_type) argument
[all...]
/art/runtime/openjdkjvmti/
H A Devents.cc231 static void SetupObjectAllocationTracking(art::gc::AllocationListener* listener, bool enable) { argument
237 art::Runtime::Current()->GetHeap()->SetAllocationListener(listener);
277 static void SetupGcPauseTracking(JvmtiGcPauseListener* listener, ArtJvmtiEvent event, bool enable) { argument
278 bool old_state = listener->IsEnabled();
281 listener->SetStartEnabled(enable);
283 listener->SetFinishEnabled(enable);
286 bool new_state = listener->IsEnabled();
290 art::Runtime::Current()->GetHeap()->SetGcPauseListener(listener);
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DMultiplexerListener.java40 public void addListener(BaseListener listener) { argument
41 listeners.add(listener);
42 listener.setup();
47 for (BaseListener listener : listeners) {
48 listener.shutdown();
54 for (BaseListener listener : listeners) {
55 listener.handleSuccessfulHostVerification();
61 for (BaseListener listener : listeners) {
62 listener.handleFailedHostVerification(verificationResult);
68 for (BaseListener listener
[all...]
/art/tools/dexfuzz/src/dexfuzz/program/
H A DProgram.java132 * The listener who is interested in events.
133 * May be a listener that is responsible for multiple listeners.
135 private BaseListener listener; field in class:Program
147 BaseListener listener) {
148 this.listener = listener;
159 listener.handleSeed(seed);
473 listener.handleMutationStats(mutationStats.getStatsString());
146 Program(RawDexFile rawDexFile, List<Mutation> previousMutations, BaseListener listener) argument

Completed in 214 milliseconds

12