Home
last modified time | relevance | path

Searched refs:DataConnectionRealTimeInfo (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DDataConnectionRealTimeInfo.java28 public class DataConnectionRealTimeInfo implements Parcelable { class
43 public DataConnectionRealTimeInfo(long time, int dcPowerState) { in DataConnectionRealTimeInfo() method in DataConnectionRealTimeInfo
53 public DataConnectionRealTimeInfo() { in DataConnectionRealTimeInfo() method in DataConnectionRealTimeInfo
61 private DataConnectionRealTimeInfo(Parcel in) { in DataConnectionRealTimeInfo() method in DataConnectionRealTimeInfo
91 public static final Parcelable.Creator<DataConnectionRealTimeInfo> CREATOR
92 = new Parcelable.Creator<DataConnectionRealTimeInfo>() {
95 public DataConnectionRealTimeInfo createFromParcel(Parcel in) {
96 return new DataConnectionRealTimeInfo(in);
100 public DataConnectionRealTimeInfo[] newArray(int size) {
101 return new DataConnectionRealTimeInfo[size];
[all …]
DPhoneStateListener.java325 (DataConnectionRealTimeInfo)msg.obj); in PhoneStateListener()
495 DataConnectionRealTimeInfo dcRtInfo) { in onDataConnectionRealTimeInfoChanged()
614 DataConnectionRealTimeInfo dcRtInfo) { in onDataConnectionRealTimeInfoChanged()
DDataConnectionRealTimeInfo.aidl20 parcelable DataConnectionRealTimeInfo;
/frameworks/base/telephony/java/com/android/internal/telephony/
DIPhoneStateListener.aidl23 import android.telephony.DataConnectionRealTimeInfo;
44 void onDataConnectionRealTimeInfoChanged(in DataConnectionRealTimeInfo dcRtInfo); in onDataConnectionRealTimeInfoChanged()
/frameworks/base/services/core/java/com/android/server/
DNetworkManagementService.java81 import android.telephony.DataConnectionRealTimeInfo;
288 private int mLastPowerStateFromRadio = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW;
289 private int mLastPowerStateFromWifi = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW;
503 boolean isActive = powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_MEDIUM in notifyInterfaceClassActivity()
504 || powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH; in notifyInterfaceClassActivity()
861 isActive ? DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH in onEvent()
862 : DataConnectionRealTimeInfo.DC_POWER_STATE_LOW, in onEvent()
1606 DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH, in addIdleTimer()
1635 DataConnectionRealTimeInfo.DC_POWER_STATE_LOW, in removeIdleTimer()
/frameworks/base/core/java/com/android/internal/app/
DIBatteryStats.aidl26 import android.telephony.DataConnectionRealTimeInfo;
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DPhoneMock.java31 import android.telephony.DataConnectionRealTimeInfo;
577 public void notifyDataConnectionRealTimeInfo(DataConnectionRealTimeInfo dcRtInfo) { in notifyDataConnectionRealTimeInfo()
/frameworks/base/services/core/java/com/android/server/am/
DBatteryStatsService.java48 import android.telephony.DataConnectionRealTimeInfo;
720 final String type = (powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH || in noteWifiRadioPowerState()
721 powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_MEDIUM) ? "active" in noteWifiRadioPowerState()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java43 import android.telephony.DataConnectionRealTimeInfo;
472 int mMobileRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW;
480 int mWifiRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW;
3563 powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_MEDIUM in noteMobileRadioPowerState()
3564 || powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH; in noteMobileRadioPowerState()
4247 powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_MEDIUM in noteWifiRadioPowerState()
4248 || powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH; in noteWifiRadioPowerState()
10176 mMobileRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW; in readSummaryFromParcel()
10182 mWifiRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW; in readSummaryFromParcel()
10876 mMobileRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW; in readFromParcelLocked()
[all …]