Home
last modified time | relevance | path

Searched refs:oldMinValue (Results 1 – 2 of 2) sorted by relevance

/packages/modules/NetworkStack/src/android/net/apf/
DLegacyApfFilter.java1984 private long getMinForPositiveValue(long oldMinValue, long value) { in getMinForPositiveValue() argument
1985 if (value < 1) return oldMinValue; in getMinForPositiveValue()
1986 return Math.min(oldMinValue, value); in getMinForPositiveValue()
1989 private int getMinForPositiveValue(int oldMinValue, int value) { in getMinForPositiveValue() argument
1990 return (int) getMinForPositiveValue((long) oldMinValue, (long) value); in getMinForPositiveValue()
DApfFilter.java2418 private long getMinForPositiveValue(long oldMinValue, long value) { in getMinForPositiveValue() argument
2419 if (value < 1) return oldMinValue; in getMinForPositiveValue()
2420 return Math.min(oldMinValue, value); in getMinForPositiveValue()
2423 private int getMinForPositiveValue(int oldMinValue, int value) { in getMinForPositiveValue() argument
2424 return (int) getMinForPositiveValue((long) oldMinValue, (long) value); in getMinForPositiveValue()