Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/
DLingerMonitor.java129 public boolean isNotificationEnabled(NetworkAgentInfo fromNai, NetworkAgentInfo toNai) { in isNotificationEnabled() argument
147 if (hasTransport(fromNai, fromTransport) && hasTransport(toNai, toTransport)) { in isNotificationEnabled()
155 private void showNotification(NetworkAgentInfo fromNai, NetworkAgentInfo toNai) { in showNotification() argument
156 mNotifier.showNotification(fromNai.network.netId, NotificationType.NETWORK_SWITCH, in showNotification()
157 fromNai, toNai, createNotificationIntent(), true); in showNotification()
177 private void notify(NetworkAgentInfo fromNai, NetworkAgentInfo toNai, boolean forceToast) { in notify() argument
192 showNotification(fromNai, toNai); in notify()
195 mNotifier.showToast(fromNai, toNai); in notify()
203 Log.d(TAG, "Notifying switch from=" + fromNai.toShortString() in notify()
208 mNotifications.put(fromNai.network.netId, toNai.network.netId); in notify()
[all …]
DNetworkNotificationManager.java335 public void showToast(NetworkAgentInfo fromNai, NetworkAgentInfo toNai) { in showToast() argument
336 String fromTransport = getTransportName(approximateTransportType(fromNai)); in showToast()