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;
126 listener.handleHostVerificationSigabort(verificationResult);
140 listener.handleDumpVerify(line.replaceFirst(".*(cc|h):\\d+] ", ""));
146 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.cc233 TestInstrumentationListener listener; local
236 ScopedSuspendAll ssa("Add instrumentation listener");
237 instr->AddListener(&listener, instrumentation_event);
244 // Check the listener is registered and is notified of the event.
246 EXPECT_FALSE(DidListenerReceiveEvent(listener, instrumentation_event, with_object));
255 EXPECT_TRUE(DidListenerReceiveEvent(listener, instrumentation_event, with_object));
257 listener.Reset();
260 ScopedSuspendAll ssa("Remove instrumentation listener");
261 instr->RemoveListener(&listener, instrumentation_event);
264 // Check the listener i
456 DidListenerReceiveEvent(const TestInstrumentationListener& listener, uint32_t event_type, bool with_object) argument
[all...]
/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.java139 * The listener who is interested in events.
140 * May be a listener that is responsible for multiple listeners.
142 private BaseListener listener; field in class:Program
154 BaseListener listener) {
155 this.listener = listener;
166 listener.handleSeed(seed);
486 listener.handleMutationStats(mutationStats.getStatsString());
153 Program(RawDexFile rawDexFile, List<Mutation> previousMutations, BaseListener listener) argument
/art/openjdkjvmti/
H A Devents.cc254 static void SetupDdmTracking(art::DdmCallback* listener, bool enable) { argument
257 art::Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(listener);
259 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveDdmCallback(listener);
323 static void SetupObjectAllocationTracking(art::gc::AllocationListener* listener, bool enable) { argument
329 art::Runtime::Current()->GetHeap()->SetAllocationListener(listener);
413 static void SetupMonitorListener(art::MonitorCallback* listener, bool enable) { argument
418 art::Runtime::Current()->GetRuntimeCallbacks()->AddMonitorCallback(listener);
420 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveMonitorCallback(listener);
458 static void SetupGcPauseTracking(JvmtiGcPauseListener* listener, ArtJvmtiEvent event, bool enable) { argument
459 bool old_state = listener
905 SetupTraceListener(JvmtiMethodTraceListener* listener, ArtJvmtiEvent event, bool enable) argument
[all...]

Completed in 205 milliseconds

12