diff options
author | Frank Li <lifr@google.com> | 2020-06-19 11:52:09 +0000 |
---|---|---|
committer | Frank Li <lifr@google.com> | 2020-06-23 01:04:43 +0000 |
commit | 0c423089f7c64ab82461be73778e067872789f8b (patch) | |
tree | 583f34f8d0a1d83453b03cbe9933e5c6fa7aec6f /src/android/net/ip/IpClient.java | |
parent | f61f0a785f01d4bb445d3f7952053131a2ed8b37 (diff) |
Fix the mStopTimeNs not be reset in Stopwatch#Restart
Bug: 151796056
Test: atest NetworkStackIntegrationTests NetworkStackTests
Test: atest FrameworksNetTests
Test: Manual test with statsd_testdrive
Original-Change: https://android-review.googlesource.com/1343438
Merged-In: Ib83ceb70af3491dacbb4a45f65ef38661ae75e32
Change-Id: Ib83ceb70af3491dacbb4a45f65ef38661ae75e32
Diffstat (limited to 'src/android/net/ip/IpClient.java')
-rw-r--r-- | src/android/net/ip/IpClient.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/android/net/ip/IpClient.java b/src/android/net/ip/IpClient.java index eeff157..1591f43 100644 --- a/src/android/net/ip/IpClient.java +++ b/src/android/net/ip/IpClient.java @@ -819,11 +819,11 @@ public class IpClient extends StateMachine { * Stop this IpClient. * * <p>This does not shut down the StateMachine itself, which is handled by {@link #shutdown()}. + * The message "arg1" parameter is used to record the disconnect code metrics. + * Usually this method is called by the peer (e.g. wifi) intentionally to stop IpClient, + * consider that's the normal user termination. */ public void stop() { - // The message "arg1" parameter is used to record the disconnect code metrics. - // Usually this method is called by the peer (e.g. wifi) intentionally to stop IpClient, - // consider that's the normal user termination. sendMessage(CMD_STOP, DisconnectCode.DC_NORMAL_TERMINATION.getNumber()); } @@ -1079,8 +1079,6 @@ public class IpClient extends StateMachine { } // Record the DisconnectCode and transition to StoppingState. - // When jumping to mStoppingState This function will ensure - // that you will not forget to fill in DisconnectCode. private void transitionToStoppingState(final DisconnectCode code) { mIpProvisioningMetrics.setDisconnectCode(code); transitionTo(mStoppingState); |