Searched refs:getDeviceConfigPropertyInt (Results 1 – 7 of 7) sorted by relevance
/packages/modules/NetworkStack/src/com/android/networkstack/netlink/ |
D | TcpSocketTracker.java | 134 mMinPacketsThreshold = mDependencies.getDeviceConfigPropertyInt( 138 mTcpPacketsFailRateThreshold = mDependencies.getDeviceConfigPropertyInt( 571 public int getDeviceConfigPropertyInt(@NonNull final String namespace, in getDeviceConfigPropertyInt() method in TcpSocketTracker.Dependencies 573 return DeviceConfigUtils.getDeviceConfigPropertyInt(namespace, name, defaultValue); in getDeviceConfigPropertyInt()
|
/packages/modules/NetworkStack/src/com/android/server/connectivity/ |
D | NetworkMonitor.java | 1836 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getUseHttpsValidation() 2005 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getIntSetting() 2053 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getConsecutiveDnsTimeoutThreshold() 2059 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getDataStallMinEvaluateTime() 2065 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getDataStallValidDnsTimeThreshold() 2072 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getDataStallEvaluationType() 2078 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getTcpPollingInterval() 3145 public int getDeviceConfigPropertyInt(@NonNull String namespace, @NonNull String name, in getDeviceConfigPropertyInt() method in NetworkMonitor.Dependencies 3147 return DeviceConfigUtils.getDeviceConfigPropertyInt(namespace, name, defaultValue); in getDeviceConfigPropertyInt() 3523 return ((Dependencies.DEFAULT.getDeviceConfigPropertyInt( in getTcpSocketTrackerOrNull()
|
/packages/modules/NetworkStack/tests/unit/src/com/android/networkstack/netlink/ |
D | TcpSocketTrackerTest.java | 229 when(mDependencies.getDeviceConfigPropertyInt( in setUp() 321 when(mDependencies.getDeviceConfigPropertyInt(any(), eq(CONFIG_TCP_PACKETS_FAIL_PERCENTAGE), in testPollSocketsInfo()
|
/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/ |
D | NetworkMonitorTest.java | 470 when(mDependencies.getDeviceConfigPropertyInt(any(), eq(CAPTIVE_PORTAL_USE_HTTPS), in setUp() 603 return ((dp.getDeviceConfigPropertyInt( in getTcpSocketTrackerOrNull() 1052 }).when(mDependencies).getDeviceConfigPropertyInt(any(), in testGetIntSetting() 1061 when(mDependencies.getDeviceConfigPropertyInt(any(), in testGetIntSetting() 2772 when(mDependencies.getDeviceConfigPropertyInt(any(), 2777 when(mDependencies.getDeviceConfigPropertyInt(any(), 2782 when(mDependencies.getDeviceConfigPropertyInt(any(), 2787 when(mDependencies.getDeviceConfigPropertyInt(any(), 2792 doReturn(time).when(mDependencies).getDeviceConfigPropertyInt(any(),
|
/packages/modules/NetworkStack/src/android/net/ip/ |
D | IpClient.java | 585 public int getDeviceConfigPropertyInt(String name, int defaultValue) { in getDeviceConfigPropertyInt() method in IpClient.Dependencies 586 return DeviceConfigUtils.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, name, in getDeviceConfigPropertyInt() 660 mMinRdnssLifetimeSec = mDependencies.getDeviceConfigPropertyInt( in IpClient()
|
/packages/modules/NetworkStack/tests/integration/src/android/net/ip/ |
D | IpClientIntegrationTestCommon.java | 422 return getDeviceConfigPropertyInt(name, 0 /* default value */); in getDhcpClientDependencies() 443 public int getDeviceConfigPropertyInt(String name, int defaultValue) { in getDeviceConfigPropertyInt() method
|
/packages/modules/NetworkStack/src/android/net/dhcp/ |
D | DhcpClient.java | 458 return DeviceConfigUtils.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getIntDeviceConfig()
|