Home
last modified time | relevance | path

Searched defs:networkType (Results 1 – 25 of 38) sorted by relevance

12

/frameworks/base/core/java/android/app/usage/
DNetworkStatsManager.java91 public Bucket querySummaryForDevice(int networkType, String subscriberId, in querySummaryForDevice()
124 public Bucket querySummaryForUser(int networkType, String subscriberId, long startTime, in querySummaryForUser()
157 public NetworkStats querySummary(int networkType, String subscriberId, long startTime, in querySummary()
192 public NetworkStats queryDetailsForUid(int networkType, String subscriberId, in queryDetailsForUid()
226 public NetworkStats queryDetails(int networkType, String subscriberId, long startTime, in queryDetails()
238 private static NetworkTemplate createTemplate(int networkType, String subscriberId) { in createTemplate()
/frameworks/base/core/java/android/net/
DIConnectivityManager.aidl49 NetworkInfo getNetworkInfo(int networkType); in getNetworkInfo()
52 Network getNetworkForType(int networkType); in getNetworkForType()
56 boolean isNetworkSupported(int networkType); in isNetworkSupported()
59 LinkProperties getLinkPropertiesForType(int networkType); in getLinkPropertiesForType()
69 boolean requestRouteToHostAddress(int networkType, in byte[] hostAddress); in requestRouteToHostAddress()
95 void reportInetCondition(int networkType, int percentage); in reportInetCondition()
125 void setProvisioningNotificationVisible(boolean visible, int networkType, in String action); in setProvisioningNotificationVisible()
156 int getRestoreDefaultNetworkDelay(int networkType); in getRestoreDefaultNetworkDelay()
DConnectivityManager.java506 public static boolean isNetworkTypeValid(int networkType) { in isNetworkTypeValid()
568 public static boolean isNetworkTypeMobile(int networkType) { in isNetworkTypeMobile()
591 public static boolean isNetworkTypeWifi(int networkType) { in isNetworkTypeWifi()
709 public NetworkInfo getNetworkInfo(int networkType) { in getNetworkInfo()
770 public Network getNetworkForType(int networkType) { in getNetworkForType()
842 public LinkProperties getLinkProperties(int networkType) { in getLinkProperties()
902 public int startUsingNetworkFeature(int networkType, String feature) { in startUsingNetworkFeature()
952 public int stopUsingNetworkFeature(int networkType, String feature) { in stopUsingNetworkFeature()
967 private NetworkCapabilities networkCapabilitiesForFeature(int networkType, String feature) { in networkCapabilitiesForFeature()
1201 public boolean requestRouteToHost(int networkType, int hostAddress) { in requestRouteToHost()
[all …]
DINetworkScoreService.aidl65 void registerNetworkScoreCache(int networkType, INetworkScoreCache scoreCache); in registerNetworkScoreCache()
DNetworkScoreManager.java262 public void registerNetworkScoreCache(int networkType, INetworkScoreCache scoreCache) { in registerNetworkScoreCache()
DLinkQualityInfo.java162 public void setNetworkType(int networkType) { in setNetworkType()
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
DConnectionUtil.java262 public void recordNetworkState(int networkType, State networkState) { in recordNetworkState()
277 public void setStateTransitionCriteria(int networkType, State initState, in setStateTransitionCriteria()
288 public boolean validateNetworkStates(int networkType) { in validateNetworkStates()
298 public String getTransitionFailureReason(int networkType) { in getTransitionFailureReason()
434 public boolean waitForNetworkState(int networkType, State expectedState, long timeout) { in waitForNetworkState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSmsNumberUtils.java126 int networkType) { in formatNumber()
545 final int networkType = getNetworkType(phoneBase); in filterDestAddr() local
565 int networkType = -1; in getNetworkType() local
DPhoneFactory.java310 int networkType = android.provider.Settings.Global.getInt(context.getContentResolver(), in calculatePreferredNetworkType() local
DSubscriptionInfoUpdater.java431 int networkType = RILConstants.PREFERRED_NETWORK_MODE; in handleSimLoaded() local
/frameworks/base/services/core/java/com/android/server/connectivity/
DDataConnectionStats.java90 int networkType = mServiceState.getDataNetworkType(); in notePhoneDataConnectionState() local
/frameworks/base/core/java/android/app/job/
DJobInfo.java80 private final int networkType; field in JobInfo
337 public Builder setRequiredNetworkType(int networkType) { in setRequiredNetworkType()
/frameworks/base/services/core/java/com/android/server/job/controllers/
DConnectivityController.java160 final int networkType = in onReceive() local
/frameworks/base/telephony/java/com/android/internal/telephony/
DIPhoneStateListener.aidl37 void onDataConnectionStateChanged(int state, int networkType); in onDataConnectionStateChanged()
DITelephonyRegistry.aidl52 in NetworkCapabilities networkCapabilities, int networkType, boolean roaming); in notifyDataConnection()
55 in NetworkCapabilities networkCapabilities, int networkType, boolean roaming); in notifyDataConnectionForSubscriber()
DITelephony.aidl722 boolean setPreferredNetworkType(int subId, int networkType); in setPreferredNetworkType()
/frameworks/base/telephony/java/android/telephony/
DPreciseDataConnectionState.java56 public PreciseDataConnectionState(int state, int networkType, in PreciseDataConnectionState()
DPhoneStateListener.java416 public void onDataConnectionStateChanged(int state, int networkType) { in onDataConnectionStateChanged()
/frameworks/base/services/core/java/com/android/server/
DNetworkScoreService.java266 public void registerNetworkScoreCache(int networkType, INetworkScoreCache scoreCache) { in registerNetworkScoreCache()
DConnectivityService.java827 private NetworkState getFilteredNetworkState(int networkType, int uid) { in getFilteredNetworkState()
1017 public NetworkInfo getNetworkInfo(int networkType) { in getNetworkInfo()
1063 public Network getNetworkForType(int networkType) { in getNetworkForType()
1135 public boolean isNetworkSupported(int networkType) { in isNetworkSupported()
1157 public LinkProperties getLinkPropertiesForType(int networkType) { in getLinkPropertiesForType()
1277 public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress) { in requestRouteToHostAddress()
1730 public int getRestoreDefaultNetworkDelay(int networkType) { in getRestoreDefaultNetworkDelay()
2643 public void reportInetCondition(int networkType, int percentage) { in reportInetCondition()
3201 private void setProvNotificationVisible(boolean visible, int networkType, String action) { in setProvNotificationVisible()
3230 NotificationType notifyType, int networkType, String extraInfo, PendingIntent intent, in setProvNotificationVisibleIntent()
[all …]
DTelephonyRegistry.java1037 NetworkCapabilities networkCapabilities, int networkType, boolean roaming) { in notifyDataConnection()
1046 int networkType, boolean roaming) { in notifyDataConnectionForSubscriber()
1521 private void broadcastPreciseDataConnectionStateChanged(int state, int networkType, in broadcastPreciseDataConnectionStateChanged()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DNetworkControllerBaseTest.java168 public void setConnectivity(int networkType, boolean inetCondition, boolean isConnected) { in setConnectivity()
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
DConnectivityManagerTestBase.java159 protected boolean waitForNetworkState(int networkType, State expectedState, long timeout) { in waitForNetworkState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDataConnection.java436 int networkType = ss.getDataNetworkType(); in DataConnection() local
1239 int networkType = ss.getDataNetworkType(); in processMessage() local
1485 int networkType = ss.getDataNetworkType(); in processMessage() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DMobileSignalController.java447 public void onDataConnectionStateChanged(int state, int networkType) { in onDataConnectionStateChanged()

12