Home
last modified time | relevance | path

Searched refs:buildTemplateMobileWithRatType (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/net/java/android/net/
DNetworkTemplateTest.kt31 import android.net.NetworkTemplate.buildTemplateMobileWithRatType
90 val templateUmts = buildTemplateMobileWithRatType(null, TelephonyManager.NETWORK_TYPE_UMTS) in testRatTypeGroupMatches()
92 val templateAll = buildTemplateMobileWithRatType(null, NETWORK_TYPE_ALL) in testRatTypeGroupMatches()
96 buildTemplateMobileWithRatType(null, TelephonyManager.NETWORK_TYPE_UNKNOWN) in testRatTypeGroupMatches()
/frameworks/base/tests/net/java/com/android/server/net/
DNetworkStatsServiceTest.java46 import static android.net.NetworkTemplate.buildTemplateMobileWithRatType;
627 buildTemplateMobileWithRatType(null, TelephonyManager.NETWORK_TYPE_UMTS);
629 buildTemplateMobileWithRatType(null, TelephonyManager.NETWORK_TYPE_LTE);
631 buildTemplateMobileWithRatType(null, TelephonyManager.NETWORK_TYPE_NR);
1231 buildTemplateMobileWithRatType(null, TelephonyManager.NETWORK_TYPE_UMTS);
1233 buildTemplateMobileWithRatType(null, TelephonyManager.NETWORK_TYPE_UNKNOWN);
1235 buildTemplateMobileWithRatType(null, NETWORK_TYPE_ALL);
/frameworks/base/core/java/android/net/
DNetworkTemplate.java145 public static NetworkTemplate buildTemplateMobileWithRatType(@Nullable String subscriberId, in buildTemplateMobileWithRatType() method in NetworkTemplate