Home
last modified time | relevance | path

Searched refs:getDeviceConfigPropertyInt (Results 1 – 9 of 9) sorted by relevance

/packages/modules/NetworkStack/src/com/android/networkstack/netlink/
DTcpSocketTracker.java135 mMinPacketsThreshold = mDependencies.getDeviceConfigPropertyInt(
139 mTcpPacketsFailRateThreshold = mDependencies.getDeviceConfigPropertyInt(
578 public int getDeviceConfigPropertyInt(@NonNull final String namespace, in getDeviceConfigPropertyInt() method in TcpSocketTracker.Dependencies
580 return DeviceConfigUtils.getDeviceConfigPropertyInt(namespace, name, defaultValue); in getDeviceConfigPropertyInt()
/packages/modules/NetworkStack/tests/unit/src/com/android/networkstack/netlink/
DTcpSocketTrackerTest.java224 when(mDependencies.getDeviceConfigPropertyInt( in setUp()
311 when(mDependencies.getDeviceConfigPropertyInt(any(), eq(CONFIG_TCP_PACKETS_FAIL_PERCENTAGE), in testPollSocketsInfo()
/packages/modules/NetworkStack/src/com/android/server/connectivity/
DNetworkMonitor.java1960 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getUseHttpsValidation()
2135 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getIntSetting()
2183 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getConsecutiveDnsTimeoutThreshold()
2189 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getDataStallMinEvaluateTime()
2195 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getDataStallValidDnsTimeThreshold()
2202 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getDataStallEvaluationType()
2208 return mDependencies.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getTcpPollingInterval()
3280 public int getDeviceConfigPropertyInt(@NonNull String namespace, @NonNull String name, in getDeviceConfigPropertyInt() method in NetworkMonitor.Dependencies
3282 return DeviceConfigUtils.getDeviceConfigPropertyInt(namespace, name, defaultValue); in getDeviceConfigPropertyInt()
3685 return ((Dependencies.DEFAULT.getDeviceConfigPropertyInt( in getTcpSocketTrackerOrNull()
/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/
DNetworkMonitorTest.java483 when(mDependencies.getDeviceConfigPropertyInt(any(), eq(CAPTIVE_PORTAL_USE_HTTPS), in setUp()
621 return ((dp.getDeviceConfigPropertyInt( in getTcpSocketTrackerOrNull()
1128 }).when(mDependencies).getDeviceConfigPropertyInt(any(), in testGetIntSetting()
1137 when(mDependencies.getDeviceConfigPropertyInt(any(), in testGetIntSetting()
2964 when(mDependencies.getDeviceConfigPropertyInt(any(), in setDataStallEvaluationType()
2969 when(mDependencies.getDeviceConfigPropertyInt(any(), in setMinDataStallEvaluateInterval()
2974 when(mDependencies.getDeviceConfigPropertyInt(any(), in setValidDataStallDnsTimeThreshold()
2979 when(mDependencies.getDeviceConfigPropertyInt(any(), in setConsecutiveDnsTimeoutThreshold()
2984 doReturn(time).when(mDependencies).getDeviceConfigPropertyInt(any(), in setTcpPollingInterval()
/packages/modules/NetworkStack/src/android/net/ip/
DIpClient.java634 public int getDeviceConfigPropertyInt(String name, int defaultValue) { in getDeviceConfigPropertyInt() method in IpClient.Dependencies
635 return DeviceConfigUtils.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, name, in getDeviceConfigPropertyInt()
730 mMinRdnssLifetimeSec = mDependencies.getDeviceConfigPropertyInt( in IpClient()
DIpClientLinkObserver.java223 final int size = mDependencies.getDeviceConfigPropertyInt(CONFIG_SOCKET_RECV_BUFSIZE, in getSocketReceiveBufferSize()
/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpClient.java460 return DeviceConfigUtils.getDeviceConfigPropertyInt(NAMESPACE_CONNECTIVITY, in getIntDeviceConfig()
/packages/modules/NetworkStack/tests/integration/src/android/net/ip/
DIpClientIntegrationTestCommon.java474 return getDeviceConfigPropertyInt(name, 0 /* default value */); in getDhcpClientDependencies()
521 public int getDeviceConfigPropertyInt(String name, int defaultValue) {
/packages/modules/Connectivity/service-t/src/com/android/server/net/
DNetworkStatsService.java627 return DeviceConfigUtils.getDeviceConfigPropertyInt( in getImportLegacyTargetAttempts()