HomeSort by relevance Sort by last modified time
    Searched refs:UEvent (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/android/os/
UEventObserver.java 23 * UEventObserver is an abstract class that receives UEvent's from the kernel.<p>
25 * Subclass UEventObserver, implementing onUEvent(UEvent event), then call
26 * startObserving() with a match string. The UEvent thread will then call your
27 * onUEvent() method when a UEvent occurs that contains your match string.<p>
29 * Call stopObserving() to stop receiving UEvent's.<p>
31 * There is only one UEvent thread per process, even if that process has
32 * multiple UEventObserver subclass instances. The UEvent thread starts when
34 * started the UEvent thread will not stop (although it can stop notifying
43 * Representation of a UEvent.
45 static public class UEvent {
    [all...]
  /frameworks/base/services/java/com/android/server/
DockObserver.java 70 public void onUEvent(UEventObserver.UEvent event) {
72 Slog.v(TAG, "Dock UEVENT: " + event.toString());
HeadsetObserver.java 68 public void onUEvent(UEventObserver.UEvent event) {
69 if (LOG) Slog.v(TAG, "Headset UEVENT: " + event.toString());
UsbObserver.java 72 public void onUEvent(UEventObserver.UEvent event) {
74 Slog.v(TAG, "USB UEVENT: " + event.toString());
BatteryService.java 168 public void onUEvent(UEventObserver.UEvent event) {

Completed in 1216 milliseconds