Home
last modified time | relevance | path

Searched refs:DataConnectionRealTimeInfo (Results 1 – 13 of 13) 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 …]
DDataConnectionRealTimeInfo.aidl20 parcelable DataConnectionRealTimeInfo;
DPhoneStateListener.java320 (DataConnectionRealTimeInfo)msg.obj); in PhoneStateListener()
483 DataConnectionRealTimeInfo dcRtInfo) { in onDataConnectionRealTimeInfoChanged()
570 DataConnectionRealTimeInfo dcRtInfo) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcController.java27 import android.telephony.DataConnectionRealTimeInfo;
362 dcPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW; in onDataStateChanged()
365 dcPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH; in onDataStateChanged()
368 dcPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_UNKNOWN; in onDataStateChanged()
371 DataConnectionRealTimeInfo dcRtInfo = in onDataStateChanged()
372 new DataConnectionRealTimeInfo(time , dcPowerState); in onDataStateChanged()
/frameworks/base/telephony/java/com/android/internal/telephony/
DIPhoneStateListener.aidl23 import android.telephony.DataConnectionRealTimeInfo;
44 void onDataConnectionRealTimeInfoChanged(in DataConnectionRealTimeInfo dcRtInfo); in onDataConnectionRealTimeInfoChanged()
DITelephonyRegistry.aidl24 import android.telephony.DataConnectionRealTimeInfo;
68 void notifyDataConnectionRealTimeInfo(in DataConnectionRealTimeInfo dcRtInfo); in notifyDataConnectionRealTimeInfo()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneNotifier.java20 import android.telephony.DataConnectionRealTimeInfo;
61 public void notifyDataConnectionRealTimeInfo(Phone sender, DataConnectionRealTimeInfo dcRtInfo); in notifyDataConnectionRealTimeInfo()
DDefaultPhoneNotifier.java25 import android.telephony.DataConnectionRealTimeInfo;
236 DataConnectionRealTimeInfo dcRtInfo) { in notifyDataConnectionRealTimeInfo()
DPhoneBase.java41 import android.telephony.DataConnectionRealTimeInfo;
1428 public void notifyDataConnectionRealTimeInfo(DataConnectionRealTimeInfo dcRtInfo) { in notifyDataConnectionRealTimeInfo()
/frameworks/base/services/core/java/com/android/server/
DNetworkManagementService.java66 import android.telephony.DataConnectionRealTimeInfo;
203 private int mLastPowerStateFromRadio = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW;
246 DataConnectionRealTimeInfo dcRtInfo) { in NetworkManagementService()
428 boolean isActive = powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_MEDIUM in notifyInterfaceClassActivity()
429 || powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH; in notifyInterfaceClassActivity()
701 isActive ? DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH in onEvent()
702 : DataConnectionRealTimeInfo.DC_POWER_STATE_LOW, timestampNanos, false); in onEvent()
1443 DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH, in addIdleTimer()
1472 DataConnectionRealTimeInfo.DC_POWER_STATE_LOW, in removeIdleTimer()
DTelephonyRegistry.java35 import android.telephony.DataConnectionRealTimeInfo;
174 private DataConnectionRealTimeInfo mDcRtInfo = new DataConnectionRealTimeInfo();
830 public void notifyDataConnectionRealTimeInfo(DataConnectionRealTimeInfo dcRtInfo) { in notifyDataConnectionRealTimeInfo()
/frameworks/base/core/java/com/android/internal/app/
DIBatteryStats.aidl23 import android.telephony.DataConnectionRealTimeInfo;
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java44 import android.telephony.DataConnectionRealTimeInfo;
315 int mMobileRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW;
3146 powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_MEDIUM in noteMobileRadioPowerState()
3147 || powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH; in noteMobileRadioPowerState()
7939 mMobileRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW; in readSummaryFromParcel()
8523 mMobileRadioPowerState = DataConnectionRealTimeInfo.DC_POWER_STATE_LOW; in readFromParcelLocked()