Home | History | Annotate | Download | only in audio

Lines Matching defs:Event

29     private final LinkedList<Event> mEvents;
36 public static abstract class Event {
42 Event() {
52 * Causes the string message for the event to appear in the logcat.
53 * Here is an example of how to create a new event (a StringEvent), adding it to the logger
60 * @return the same instance of the event
62 public Event printLog(String tag) {
68 * Convert event to String.
70 * so this method is where expensive String conversions should be made, not when the Event
73 * @return a string representation of the event that occurred.
78 public static class StringEvent extends Event {
97 mEvents = new LinkedList<Event>();
102 public synchronized void log(Event evt) {
110 pw.println("Audio event log: " + mTitle);
111 for (Event evt : mEvents) {