Loading proto/src/telephony.proto +1 −1 Original line number Diff line number Diff line Loading @@ -706,7 +706,7 @@ message RilDataCall { optional PdpType type = 2; // The network interface name e.g. wlan0, rmnet_data0. optional string iframe = 3; optional string ifname = 3; // State of the Data Call connection optional State state = 4; Loading src/java/com/android/internal/telephony/metrics/TelephonyMetrics.java +1 −1 Original line number Diff line number Diff line Loading @@ -1775,7 +1775,7 @@ public class TelephonyMetrics { dataCall.type = response.getProtocolType() + 1; if (!TextUtils.isEmpty(response.getInterfaceName())) { dataCall.iframe = response.getInterfaceName(); dataCall.ifname = response.getInterfaceName(); } } setupDataCallResponse.call = dataCall; Loading tests/telephonytests/src/com/android/internal/telephony/metrics/TelephonyMetricsTest.java +1 −1 Original line number Diff line number Diff line Loading @@ -536,7 +536,7 @@ public class TelephonyMetricsTest extends TelephonyTest { assertEquals(6, respProto.suggestedRetryTimeMillis); assertEquals(7, respProto.call.cid); assertEquals(PDP_TYPE_IPV4V6, respProto.call.type); assertEquals(FAKE_IFNAME, respProto.call.iframe); assertEquals(FAKE_IFNAME, respProto.call.ifname); } // Test write on deactivate data call response Loading Loading
proto/src/telephony.proto +1 −1 Original line number Diff line number Diff line Loading @@ -706,7 +706,7 @@ message RilDataCall { optional PdpType type = 2; // The network interface name e.g. wlan0, rmnet_data0. optional string iframe = 3; optional string ifname = 3; // State of the Data Call connection optional State state = 4; Loading
src/java/com/android/internal/telephony/metrics/TelephonyMetrics.java +1 −1 Original line number Diff line number Diff line Loading @@ -1775,7 +1775,7 @@ public class TelephonyMetrics { dataCall.type = response.getProtocolType() + 1; if (!TextUtils.isEmpty(response.getInterfaceName())) { dataCall.iframe = response.getInterfaceName(); dataCall.ifname = response.getInterfaceName(); } } setupDataCallResponse.call = dataCall; Loading
tests/telephonytests/src/com/android/internal/telephony/metrics/TelephonyMetricsTest.java +1 −1 Original line number Diff line number Diff line Loading @@ -536,7 +536,7 @@ public class TelephonyMetricsTest extends TelephonyTest { assertEquals(6, respProto.suggestedRetryTimeMillis); assertEquals(7, respProto.call.cid); assertEquals(PDP_TYPE_IPV4V6, respProto.call.type); assertEquals(FAKE_IFNAME, respProto.call.iframe); assertEquals(FAKE_IFNAME, respProto.call.ifname); } // Test write on deactivate data call response Loading