Loading src/java/com/android/internal/telephony/RILUtils.java +7 −3 Original line number Original line Diff line number Diff line Loading @@ -1102,9 +1102,13 @@ public class RILUtils { android.hardware.radio.data.TrafficDescriptor td = android.hardware.radio.data.TrafficDescriptor td = new android.hardware.radio.data.TrafficDescriptor(); new android.hardware.radio.data.TrafficDescriptor(); td.dnn = trafficDescriptor.getDataNetworkName(); td.dnn = trafficDescriptor.getDataNetworkName(); if (trafficDescriptor.getOsAppId() == null) { td.osAppId = null; } else { android.hardware.radio.data.OsAppId osAppId = new android.hardware.radio.data.OsAppId(); android.hardware.radio.data.OsAppId osAppId = new android.hardware.radio.data.OsAppId(); osAppId.osAppId = trafficDescriptor.getOsAppId(); osAppId.osAppId = trafficDescriptor.getOsAppId(); td.osAppId = osAppId; td.osAppId = osAppId; } return td; return td; } } Loading Loading
src/java/com/android/internal/telephony/RILUtils.java +7 −3 Original line number Original line Diff line number Diff line Loading @@ -1102,9 +1102,13 @@ public class RILUtils { android.hardware.radio.data.TrafficDescriptor td = android.hardware.radio.data.TrafficDescriptor td = new android.hardware.radio.data.TrafficDescriptor(); new android.hardware.radio.data.TrafficDescriptor(); td.dnn = trafficDescriptor.getDataNetworkName(); td.dnn = trafficDescriptor.getDataNetworkName(); if (trafficDescriptor.getOsAppId() == null) { td.osAppId = null; } else { android.hardware.radio.data.OsAppId osAppId = new android.hardware.radio.data.OsAppId(); android.hardware.radio.data.OsAppId osAppId = new android.hardware.radio.data.OsAppId(); osAppId.osAppId = trafficDescriptor.getOsAppId(); osAppId.osAppId = trafficDescriptor.getOsAppId(); td.osAppId = osAppId; td.osAppId = osAppId; } return td; return td; } } Loading