Home | History | Annotate | Download | only in os

Lines Matching defs:HistoryItem

409     public final static class HistoryItem implements Parcelable {
410 public HistoryItem next;
463 public HistoryItem() {
466 public HistoryItem(long time, Parcel src) {
498 public void setTo(HistoryItem o) {
510 public void setTo(long time, byte cmd, HistoryItem o) {
522 public boolean same(HistoryItem o) {
556 public abstract boolean getNextHistoryLocked(HistoryItem out);
561 public abstract HistoryItem getHistory();
690 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged"),
691 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen"),
692 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps"),
693 new BitDescription(HistoryItem.STATE_PHONE_IN_CALL_FLAG, "phone_in_call"),
694 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning"),
695 new BitDescription(HistoryItem.STATE_WIFI_ON_FLAG, "wifi"),
696 new BitDescription(HistoryItem.STATE_WIFI_RUNNING_FLAG, "wifi_running"),
697 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock"),
698 new BitDescription(HistoryItem.STATE_WIFI_SCAN_LOCK_FLAG, "wifi_scan_lock"),
699 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast"),
700 new BitDescription(HistoryItem.STATE_BLUETOOTH_ON_FLAG, "bluetooth"),
701 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio"),
702 new BitDescription(HistoryItem.STATE_VIDEO_ON_FLAG, "video"),
703 new BitDescription(HistoryItem.STATE_WAKE_LOCK_FLAG, "wake_lock"),
704 new BitDescription(HistoryItem.STATE_SENSOR_ON_FLAG, "sensor"),
705 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
706 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness",
708 new BitDescription(HistoryItem.STATE_SIGNAL_STRENGTH_MASK,
709 HistoryItem.STATE_SIGNAL_STRENGTH_SHIFT, "signal_strength",
711 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
712 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state",
714 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
715 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn",
1771 final HistoryItem rec = new HistoryItem();
1785 if (rec.cmd == HistoryItem.CMD_START) {
1787 } else if (rec.cmd == HistoryItem.CMD_OVERFLOW) {