Home | History | Annotate | Download | only in dexfuzz

Lines Matching refs:listener

54     // Create the Listener, which will listen for events and report them.
55 BaseListener listener = null;
57 // Create a Listener that is responsible for multiple Listeners.
60 // Add the live updating listener, but only if we're not printing out lots of logs.
67 // Add the file logging listener.
71 listener = multipleListener;
73 // Just use the basic listener.
74 listener = new ConsoleLoggerListener();
80 fuzzer = new FuzzerMultipleExecute(listener);
82 fuzzer = new FuzzerMultipleNoExecute(listener);
84 fuzzer = new FuzzerSingleExecute(listener);
86 fuzzer = new FuzzerSingleNoExecute(listener);
98 // Cleanup the Listener.
99 listener.shutdown();