Merge commit '61ce55899d92e786fb9595052e7dcc66e8148b4c' into manual_merge_61ce55899d92

Test: Build
Change-Id: I4e5ecc3b2540f07489d3b0dbcc0626d0e5f7d3da
This commit is contained in:
Andrew Scull
2017-05-23 13:11:03 +01:00

View File

@@ -154,7 +154,7 @@ public class NetworkManagementService extends INetworkManagementService.Stub
*/ */
public static final String PERMISSION_SYSTEM = "SYSTEM"; public static final String PERMISSION_SYSTEM = "SYSTEM";
class NetdResponseCode { static class NetdResponseCode {
/* Keep in sync with system/netd/server/ResponseCode.h */ /* Keep in sync with system/netd/server/ResponseCode.h */
public static final int InterfaceListResult = 110; public static final int InterfaceListResult = 110;
public static final int TetherInterfaceListResult = 111; public static final int TetherInterfaceListResult = 111;
@@ -229,8 +229,8 @@ public class NetworkManagementService extends INetworkManagementService.Stub
* If both locks need to be held, then they should be obtained in the order: * If both locks need to be held, then they should be obtained in the order:
* first {@link #mQuotaLock} and then {@link #mRulesLock}. * first {@link #mQuotaLock} and then {@link #mRulesLock}.
*/ */
private Object mQuotaLock = new Object(); private final Object mQuotaLock = new Object();
private Object mRulesLock = new Object(); private final Object mRulesLock = new Object();
/** Set of interfaces with active quotas. */ /** Set of interfaces with active quotas. */
@GuardedBy("mQuotaLock") @GuardedBy("mQuotaLock")
@@ -275,7 +275,7 @@ public class NetworkManagementService extends INetworkManagementService.Stub
@GuardedBy("mQuotaLock") @GuardedBy("mQuotaLock")
private volatile boolean mDataSaverMode; private volatile boolean mDataSaverMode;
private Object mIdleTimerLock = new Object(); private final Object mIdleTimerLock = new Object();
/** Set of interfaces with active idle timers. */ /** Set of interfaces with active idle timers. */
private static class IdleTimerParams { private static class IdleTimerParams {
public final int timeout; public final int timeout;