/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pMonitor.java | 102 public synchronized void registerHandler(String iface, int what, Handler handler) { in registerHandler() 117 private boolean isMonitoring(String iface) { in isMonitoring() 133 public void setMonitoring(String iface, boolean enabled) { in setMonitoring() 149 public synchronized void startMonitoring(String iface) { in startMonitoring() 160 public synchronized void stopMonitoring(String iface) { in stopMonitoring() 182 private void sendMessage(String iface, int what) { in sendMessage() 186 private void sendMessage(String iface, int what, Object obj) { in sendMessage() 190 private void sendMessage(String iface, int what, int arg1) { in sendMessage() 194 private void sendMessage(String iface, int what, int arg1, int arg2) { in sendMessage() 198 private void sendMessage(String iface, int what, int arg1, int arg2, Object obj) { in sendMessage() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiMonitor.java | 131 public synchronized void registerHandler(String iface, int what, Handler handler) { in registerHandler() 151 public synchronized void deregisterHandler(String iface, int what, Handler handler) { in deregisterHandler() 164 private boolean isMonitoring(String iface) { in isMonitoring() 180 public void setMonitoring(String iface, boolean enabled) { in setMonitoring() 195 public synchronized void startMonitoring(String iface) { in startMonitoring() 206 public synchronized void stopMonitoring(String iface) { in stopMonitoring() 229 private void sendMessage(String iface, int what) { in sendMessage() 233 private void sendMessage(String iface, int what, Object obj) { in sendMessage() 237 private void sendMessage(String iface, int what, int arg1) { in sendMessage() 241 private void sendMessage(String iface, int what, int arg1, int arg2) { in sendMessage() [all …]
|
D | SupplicantStaIfaceHal.java | 325 @NonNull ISupplicantStaIface iface) throws RemoteException { in trySetupStaIfaceV1_3() 339 @NonNull ISupplicantStaIface iface) throws RemoteException { in trySetupStaIfaceV1_2() 359 @NonNull ISupplicantStaIface iface) throws RemoteException { in trySetupStaIfaceV1_1() 395 ISupplicantStaIface iface = getStaIfaceMockable(ifaceHwBinder); in setupStaIface() local 434 ISupplicantStaIface iface = setupStaIface(ifaceName, ifaceHwBinder); in setupIface() local 795 protected ISupplicantStaIface getStaIfaceMockable(ISupplicantIface iface) { in getStaIfaceMockable() 802 getStaIfaceMockableV1_1(ISupplicantIface iface) { in getStaIfaceMockableV1_1() 810 getStaIfaceMockableV1_2(ISupplicantIface iface) { in getStaIfaceMockableV1_2() 818 getStaIfaceMockableV1_3(ISupplicantIface iface) { in getStaIfaceMockableV1_3() 1263 ISupplicantStaIface iface = checkSupplicantStaIfaceAndLogFailure(ifaceName, methodStr); in addNetwork() local [all …]
|
D | WifiNative.java | 208 Iface iface = new Iface(mNextId, type); in allocateIface() local 281 Iface iface = findAnyIfaceOfType(Iface.IFACE_TYPE_STA_FOR_CONNECTIVITY); in findAnyStaIfaceName() local 293 Iface iface = findAnyIfaceOfType(Iface.IFACE_TYPE_AP); in findAnyApIfaceName() local 519 private void onClientInterfaceForConnectivityDestroyed(@NonNull Iface iface) { in onClientInterfaceForConnectivityDestroyed() 537 private void onClientInterfaceForScanDestroyed(@NonNull Iface iface) { in onClientInterfaceForScanDestroyed() 551 private void onSoftApInterfaceDestroyed(@NonNull Iface iface) { in onSoftApInterfaceDestroyed() 568 private void onInterfaceDestroyed(@NonNull Iface iface) { in onInterfaceDestroyed() 597 final Iface iface = mIfaceMgr.removeIface(mInterfaceId); in onDestroyed() local 683 private void onInterfaceStateChanged(Iface iface, boolean isUp) { in onInterfaceStateChanged() 816 private String createStaIface(@NonNull Iface iface) { in createStaIface() [all …]
|
D | WifiVendorHal.java | 442 IWifiStaIface iface = mHalDeviceManager.createStaIface( in createStaIface() local 475 IWifiStaIface iface = getStaIface(ifaceName); in removeStaIface() local 520 IWifiApIface iface = mHalDeviceManager.createApIface( in createApIface() local 548 IWifiApIface iface = getApIface(ifaceName); in removeApIface() local 560 private boolean retrieveWifiChip(IWifiIface iface) { in retrieveWifiChip() 583 private boolean registerStaIfaceCallback(IWifiStaIface iface) { in registerStaIfaceCallback() 668 IWifiStaIface iface = getStaIface(ifaceName); in getBgScanCapabilities() local 822 IWifiStaIface iface = getStaIface(ifaceName); in startBgScan() local 852 IWifiStaIface iface = getStaIface(ifaceName); in stopBgScan() local 874 IWifiStaIface iface = getStaIface(ifaceName); in pauseBgScan() local [all …]
|
/frameworks/opt/net/wifi/libwifi_hal/ |
D | hal_tool.cpp | 72 wifi_error wifi_get_iface_name_stub(wifi_interface_handle iface, char* name, in wifi_get_iface_name_stub() 78 wifi_interface_handle iface, in wifi_set_iface_event_handler_stub() 84 wifi_interface_handle iface) { in wifi_reset_iface_event_handler_stub() 89 wifi_interface_handle iface, in wifi_start_gscan_stub() 96 wifi_interface_handle iface) { in wifi_stop_gscan_stub() 100 wifi_error wifi_get_cached_gscan_results_stub(wifi_interface_handle iface, in wifi_get_cached_gscan_results_stub() 108 wifi_interface_handle iface, in wifi_set_bssid_hotlist_stub() 115 wifi_interface_handle iface) { in wifi_reset_bssid_hotlist_stub() 120 wifi_request_id id, wifi_interface_handle iface, in wifi_set_significant_change_handler_stub() 127 wifi_request_id id, wifi_interface_handle iface) { in wifi_reset_significant_change_handler_stub() [all …]
|
/frameworks/base/core/java/android/net/ |
D | INetworkManagementEventObserver.aidl | 34 void interfaceStatusChanged(String iface, boolean up); in interfaceStatusChanged() 43 void interfaceLinkStateChanged(String iface, boolean up); in interfaceLinkStateChanged() 50 void interfaceAdded(String iface); in interfaceAdded() 57 void interfaceRemoved(String iface); in interfaceRemoved() 66 void addressUpdated(String iface, in LinkAddress address); in addressUpdated() 74 void addressRemoved(String iface, in LinkAddress address); in addressRemoved() 83 void limitReached(String limitName, String iface); in limitReached() 101 void interfaceDnsServerInfo(String iface, long lifetime, in String[] servers); in interfaceDnsServerInfo()
|
D | EthernetManager.java | 81 void onAvailabilityChanged(String iface, boolean isAvailable); in onAvailabilityChanged() 102 public IpConfiguration getConfiguration(String iface) { in getConfiguration() 115 public void setConfiguration(String iface, IpConfiguration config) { in setConfiguration() 139 public boolean isAvailable(String iface) { in isAvailable() 251 void onAvailable(@NonNull String iface); in onAvailable()
|
D | IEthernetManager.aidl | 31 IpConfiguration getConfiguration(String iface); in getConfiguration() 32 void setConfiguration(String iface, in IpConfiguration config); in setConfiguration() 33 boolean isAvailable(String iface); in isAvailable()
|
D | RouteInfo.java | 140 @Nullable String iface, @RouteType int type) { in RouteInfo() 165 @Nullable String iface, @RouteType int type, int mtu) { in RouteInfo() 242 @Nullable String iface) { in RouteInfo() 251 @Nullable String iface) { in RouteInfo() 327 public static RouteInfo makeHostRoute(@NonNull InetAddress host, @Nullable String iface) { in makeHostRoute() 335 @Nullable String iface) { in makeHostRoute() 571 @Nullable String iface) { in RouteKey()
|
D | TestNetworkManager.java | 69 private void setupTestNetwork( in setupTestNetwork() 106 public void setupTestNetwork(@NonNull String iface, @NonNull IBinder binder) { in setupTestNetwork() 119 public void setupTestNetwork( in setupTestNetwork()
|
/frameworks/base/core/java/com/android/server/net/ |
D | BaseNetworkObserver.java | 37 public void interfaceStatusChanged(String iface, boolean up) { in interfaceStatusChanged() 42 public void interfaceRemoved(String iface) { in interfaceRemoved() 47 public void addressUpdated(String iface, LinkAddress address) { in addressUpdated() 52 public void addressRemoved(String iface, LinkAddress address) { in addressRemoved() 57 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() 62 public void interfaceAdded(String iface) { in interfaceAdded() 72 public void limitReached(String limitName, String iface) { in limitReached() 77 public void interfaceDnsServerInfo(String iface, long lifetime, String[] servers) { in interfaceDnsServerInfo()
|
D | NetlinkTracker.java | 84 public NetlinkTracker(String iface, Callback callback) { in NetlinkTracker() 93 private void maybeLog(String operation, String iface, LinkAddress address) { in maybeLog() 107 public void interfaceRemoved(String iface) { in interfaceRemoved() 120 public void addressUpdated(String iface, LinkAddress address) { in addressUpdated() 134 public void addressRemoved(String iface, LinkAddress address) { in addressRemoved() 176 public void interfaceDnsServerInfo(String iface, long lifetime, String[] addresses) { in interfaceDnsServerInfo()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
D | NetdWrapper.java | 66 void interfaceStatusChanged(String iface, boolean up); in interfaceStatusChanged() 74 void interfaceLinkStateChanged(String iface, boolean up); in interfaceLinkStateChanged() 165 private void modifyInterfaceInNetwork(boolean add, int netId, String iface) { in modifyInterfaceInNetwork() 214 public void addInterfaceToLocalNetwork(String iface, List<RouteInfo> routes) { in addInterfaceToLocalNetwork() 231 public void removeInterfaceFromLocalNetwork(String iface) { in removeInterfaceFromLocalNetwork() 238 public void clearInterfaceAddresses(String iface) { in clearInterfaceAddresses() 249 public void enableIpv6(String iface) { in enableIpv6() 260 public void disableIpv6(String iface) { in disableIpv6() 272 String iface) { in toStableParcel() 307 private InterfaceConfiguration getInterfaceConfig(String iface) { in getInterfaceConfig() [all …]
|
/frameworks/base/core/java/android/os/ |
D | INetworkManagementService.aidl | 60 InterfaceConfiguration getInterfaceConfig(String iface); in getInterfaceConfig() 66 void setInterfaceConfig(String iface, in InterfaceConfiguration cfg); in setInterfaceConfig() 72 void clearInterfaceAddresses(String iface); in clearInterfaceAddresses() 77 void setInterfaceDown(String iface); in setInterfaceDown() 82 void setInterfaceUp(String iface); in setInterfaceUp() 88 void setInterfaceIpv6PrivacyExtensions(String iface, boolean enable); in setInterfaceIpv6PrivacyExtensions() 94 void disableIpv6(String iface); in disableIpv6() 100 void enableIpv6(String iface); in enableIpv6() 107 void setIPv6AddrGenMode(String iface, int mode); in setIPv6AddrGenMode() 122 void setMtu(String iface, int mtu); in setMtu() [all …]
|
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/ |
D | EthernetTracker.java | 157 void updateIpConfiguration(String iface, IpConfiguration ipConfiguration) { in updateIpConfiguration() 168 IpConfiguration getIpConfiguration(String iface) { in getIpConfiguration() 172 boolean isTrackingInterface(String iface) { in isTrackingInterface() 184 boolean isRestrictedInterface(String iface) { in isRestrictedInterface() 229 private void notifyTetheredInterfaceAvailable(ITetheredInterfaceCallback cb, String iface) { in notifyTetheredInterfaceAvailable() 260 private int getInterfaceMode(final String iface) { in getInterfaceMode() 267 private void removeInterface(String iface) { in removeInterface() 272 private void stopTrackingInterface(String iface) { in stopTrackingInterface() 279 private void addInterface(String iface) { in addInterface() 329 private void updateInterfaceState(String iface, boolean up) { in updateInterfaceState() [all …]
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | MockWifiMonitor.java | 42 public void registerHandler(String iface, int what, Handler handler) { in registerHandler() 52 public synchronized void startMonitoring(String iface) { in startMonitoring() 59 public void sendMessage(String iface, int what) { in sendMessage() 63 public void sendMessage(String iface, Message message) { in sendMessage()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | MockWifiP2pMonitor.java | 44 public void registerHandler(String iface, int what, Handler handler) { in registerHandler() 54 public synchronized void startMonitoring(String iface) { in startMonitoring() 61 public void sendMessage(String iface, int what) { in sendMessage() 65 public void sendMessage(String iface, Message message) { in sendMessage()
|
/frameworks/base/packages/Tethering/tests/integration/src/android/net/ |
D | EthernetTetheringTest.java | 164 final String iface = mTetheredInterfaceRequester.getInterface(); in testVirtualEthernetAlreadyExists() local 182 final String iface = futureIface.get(TIMEOUT_MS, TimeUnit.MILLISECONDS); in testVirtualEthernet() local 197 final String iface = mTetheredInterfaceRequester.getInterface(); in testStaticIpv4() local 247 final String iface = mTetheredInterfaceRequester.getInterface(); in testPhysicalEthernet() local 267 MyTetheringEventCallback(TetheringManager tm, String iface) { in MyTetheringEventCallback() 337 private MyTetheringEventCallback enableEthernetTethering(String iface, in enableEthernetTethering() 354 private MyTetheringEventCallback enableEthernetTethering(String iface) throws Exception { in enableEthernetTethering() 360 private int getMTU(TestNetworkInterface iface) throws SocketException { in getMTU() 373 private void checkVirtualEthernet(TestNetworkInterface iface, int mtu) throws Exception { in checkVirtualEthernet() 460 public void onAvailable(String iface) { in onAvailable() [all …]
|
/frameworks/base/services/core/java/com/android/server/ |
D | NetworkManagementService.java | 352 private void notifyInterfaceStatusChanged(String iface, boolean up) { in notifyInterfaceStatusChanged() 360 private void notifyInterfaceLinkStateChanged(String iface, boolean up) { in notifyInterfaceLinkStateChanged() 367 private void notifyInterfaceAdded(String iface) { in notifyInterfaceAdded() 374 private void notifyInterfaceRemoved(String iface) { in notifyInterfaceRemoved() 385 private void notifyLimitReached(String limitName, String iface) { in notifyLimitReached() 626 private void notifyAddressUpdated(String iface, LinkAddress address) { in notifyAddressUpdated() 633 private void notifyAddressRemoved(String iface, LinkAddress address) { in notifyAddressRemoved() 640 private void notifyInterfaceDnsServerInfo(String iface, long lifetime, String[] addresses) { in notifyInterfaceDnsServerInfo() 764 String iface) { in toStableParcel() 801 public InterfaceConfiguration getInterfaceConfig(String iface) { in getInterfaceConfig() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareNativeApi.java | 107 public android.hardware.wifi.V1_2.IWifiNanIface mockableCastTo_1_2(IWifiNanIface iface) { in mockableCastTo_1_2() 116 public android.hardware.wifi.V1_4.IWifiNanIface mockableCastTo_1_4(IWifiNanIface iface) { in mockableCastTo_1_4() 327 IWifiNanIface iface = mHal.getWifiNanIface(); in getCapabilities() local 370 IWifiNanIface iface = mHal.getWifiNanIface(); in enableAndConfigure() local 623 IWifiNanIface iface = mHal.getWifiNanIface(); in disable() local 659 IWifiNanIface iface = mHal.getWifiNanIface(); in publish() local 724 IWifiNanIface iface = mHal.getWifiNanIface(); in subscribe() local 810 IWifiNanIface iface = mHal.getWifiNanIface(); in sendMessage() local 853 IWifiNanIface iface = mHal.getWifiNanIface(); in stopPublish() local 887 IWifiNanIface iface = mHal.getWifiNanIface(); in stopSubscribe() local [all …]
|
/frameworks/native/libs/binder/ |
D | IInterface.cpp | 33 sp<IBinder> IInterface::asBinder(const IInterface* iface) in asBinder() 40 sp<IBinder> IInterface::asBinder(const sp<IInterface>& iface) in asBinder()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_TestNetworkService.cpp | 50 static void throwException(JNIEnv* env, int error, const char* action, const char* iface) { in throwException() 57 static int createTunTapInterface(JNIEnv* env, bool isTun, const char* iface) { in createTunTapInterface() 84 ScopedUtfChars iface(env, jIface); in create() local
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | Nat464Xlat.java | 278 String iface = mIface; in stop() local 448 private LinkAddress getLinkAddress(String iface) { in getLinkAddress() 461 private void handleInterfaceLinkStateChanged(String iface, boolean up) { in handleInterfaceLinkStateChanged() 497 private void handleInterfaceRemoved(String iface) { in handleInterfaceRemoved() 514 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() 519 public void interfaceRemoved(String iface) { in interfaceRemoved()
|
/frameworks/base/lowpan/java/android/net/lowpan/ |
D | LowpanManager.java | 113 LowpanInterface iface = null; in getInterfaceNoCreate() local 127 LowpanInterface iface = null; in getInterface() local 141 mInterfaceCache.put(iface.getName(), iface); in getInterface() local 183 LowpanInterface iface = null; in getInterface() local
|