Home
last modified time | relevance | path

Searched defs:iface (Results 1 – 25 of 102) sorted by relevance

12345

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pMonitor.java102 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/
DWifiMonitor.java122 public synchronized void registerHandler(String iface, int what, Handler handler) { in registerHandler()
142 public synchronized void deregisterHandler(String iface, int what, Handler handler) { in deregisterHandler()
155 private boolean isMonitoring(String iface) { in isMonitoring()
171 public void setMonitoring(String iface, boolean enabled) { in setMonitoring()
186 public synchronized void startMonitoring(String iface) { in startMonitoring()
197 public synchronized void stopMonitoring(String iface) { in stopMonitoring()
220 private void sendMessage(String iface, int what) { in sendMessage()
224 private void sendMessage(String iface, int what, Object obj) { in sendMessage()
228 private void sendMessage(String iface, int what, int arg1) { in sendMessage()
232 private void sendMessage(String iface, int what, int arg1, int arg2) { in sendMessage()
[all …]
DSupplicantStaIfaceHal.java337 android.hardware.wifi.supplicant.V1_2.ISupplicantStaIface iface = in setupIface() local
352 android.hardware.wifi.supplicant.V1_1.ISupplicantStaIface iface = in setupIface() local
363 ISupplicantStaIface iface = getStaIfaceMockable(ifaceHwBinder); in setupIface() local
693 protected ISupplicantStaIface getStaIfaceMockable(ISupplicantIface iface) { in getStaIfaceMockable()
700 getStaIfaceMockableV1_1(ISupplicantIface iface) { in getStaIfaceMockableV1_1()
708 getStaIfaceMockableV1_2(ISupplicantIface iface) { in getStaIfaceMockableV1_2()
1168 ISupplicantStaIface iface = checkSupplicantStaIfaceAndLogFailure(ifaceName, methodStr); in addNetwork() local
1199 ISupplicantStaIface iface = checkSupplicantStaIfaceAndLogFailure(ifaceName, methodStr); in removeNetwork() local
1239 ISupplicantStaIface iface = checkSupplicantStaIfaceAndLogFailure(ifaceName, methodStr); in getNetwork() local
1263 ISupplicantStaIface iface, ISupplicantStaIfaceCallback callback) { in registerCallback()
[all …]
DWifiVendorHal.java401 IWifiStaIface iface = mHalDeviceManager.createStaIface(lowPrioritySta, in createStaIface() local
434 IWifiStaIface iface = getStaIface(ifaceName); in removeStaIface() local
480 IWifiApIface iface = mHalDeviceManager.createApIface( in createApIface() local
508 IWifiApIface iface = getApIface(ifaceName); in removeApIface() local
520 private boolean retrieveWifiChip(IWifiIface iface) { in retrieveWifiChip()
543 private boolean registerStaIfaceCallback(IWifiStaIface iface) { in registerStaIfaceCallback()
624 IWifiStaIface iface = getStaIface(ifaceName); in getBgScanCapabilities() local
775 IWifiStaIface iface = getStaIface(ifaceName); in startBgScan() local
805 IWifiStaIface iface = getStaIface(ifaceName); in stopBgScan() local
827 IWifiStaIface iface = getStaIface(ifaceName); in pauseBgScan() local
[all …]
/frameworks/opt/net/wifi/libwifi_hal/
Dhal_tool.cpp72 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/
DINetworkManagementEventObserver.aidl34 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()
DIEthernetManager.aidl30 IpConfiguration getConfiguration(String iface); in getConfiguration()
31 void setConfiguration(String iface, in IpConfiguration config); in setConfiguration()
32 boolean isAvailable(String iface); in isAvailable()
DEthernetManager.java71 void onAvailabilityChanged(String iface, boolean isAvailable); in onAvailabilityChanged()
90 public IpConfiguration getConfiguration(String iface) { in getConfiguration()
102 public void setConfiguration(String iface, IpConfiguration config) { in setConfiguration()
124 public boolean isAvailable(String iface) { in isAvailable()
DRouteInfo.java134 @Nullable String iface, @RouteType int type) { in RouteInfo()
210 @Nullable String iface) { in RouteInfo()
219 @Nullable String iface) { in RouteInfo()
295 public static RouteInfo makeHostRoute(@NonNull InetAddress host, @Nullable String iface) { in makeHostRoute()
303 @Nullable String iface) { in makeHostRoute()
/frameworks/base/core/java/com/android/server/net/
DBaseNetworkObserver.java32 public void interfaceStatusChanged(String iface, boolean up) { in interfaceStatusChanged()
37 public void interfaceRemoved(String iface) { in interfaceRemoved()
42 public void addressUpdated(String iface, LinkAddress address) { in addressUpdated()
47 public void addressRemoved(String iface, LinkAddress address) { in addressRemoved()
52 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged()
57 public void interfaceAdded(String iface) { in interfaceAdded()
67 public void limitReached(String limitName, String iface) { in limitReached()
72 public void interfaceDnsServerInfo(String iface, long lifetime, String[] servers) { in interfaceDnsServerInfo()
DNetlinkTracker.java84 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/base/core/java/android/os/
DINetworkManagementService.aidl60 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/
DEthernetTracker.java130 void updateIpConfiguration(String iface, IpConfiguration ipConfiguration) { in updateIpConfiguration()
141 IpConfiguration getIpConfiguration(String iface) { in getIpConfiguration()
145 boolean isTrackingInterface(String iface) { in isTrackingInterface()
157 boolean isRestrictedInterface(String iface) { in isRestrictedInterface()
170 private void removeInterface(String iface) { in removeInterface()
174 private void addInterface(String iface) { in addInterface()
217 private void updateInterfaceState(String iface, boolean up) { in updateInterfaceState()
239 private void maybeTrackInterface(String iface) { in maybeTrackInterface()
270 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged()
278 public void interfaceAdded(String iface) { in interfaceAdded()
[all …]
DEthernetServiceImpl.java101 public IpConfiguration getConfiguration(String iface) { in getConfiguration()
115 public void setConfiguration(String iface, IpConfiguration config) { in setConfiguration()
135 public boolean isAvailable(String iface) { in isAvailable()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DMockWifiP2pMonitor.java44 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/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DMockWifiMonitor.java42 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/base/services/core/java/com/android/server/
DNetworkManagementService.java352 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()
757 String iface) { in toStableParcel()
794 public InterfaceConfiguration getInterfaceConfig(String iface) { in getInterfaceConfig()
[all …]
DTestNetworkService.java74 private static native int jniCreateTunTap(boolean isTun, @NonNull String iface); in jniCreateTunTap()
100 String iface = ifacePrefix + sTestTunIndex.getAndIncrement(); in createInterface() local
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
DWifiAwareNativeApi.java100 public android.hardware.wifi.V1_2.IWifiNanIface mockableCastTo_1_2(IWifiNanIface iface) { in mockableCastTo_1_2()
302 IWifiNanIface iface = mHal.getWifiNanIface(); in getCapabilities() local
345 IWifiNanIface iface = mHal.getWifiNanIface(); in enableAndConfigure() local
521 IWifiNanIface iface = mHal.getWifiNanIface(); in disable() local
557 IWifiNanIface iface = mHal.getWifiNanIface(); in publish() local
622 IWifiNanIface iface = mHal.getWifiNanIface(); in subscribe() local
708 IWifiNanIface iface = mHal.getWifiNanIface(); in sendMessage() local
751 IWifiNanIface iface = mHal.getWifiNanIface(); in stopPublish() local
785 IWifiNanIface iface = mHal.getWifiNanIface(); in stopSubscribe() local
820 IWifiNanIface iface = mHal.getWifiNanIface(); in createAwareNetworkInterface() local
[all …]
/frameworks/native/libs/binder/
DIInterface.cpp33 sp<IBinder> IInterface::asBinder(const IInterface* iface) in asBinder()
40 sp<IBinder> IInterface::asBinder(const sp<IInterface>& iface) in asBinder()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNat464Xlat.java259 String iface = mIface; in stop() local
365 private LinkAddress getLinkAddress(String iface) { in getLinkAddress()
378 private void handleInterfaceLinkStateChanged(String iface, boolean up) { in handleInterfaceLinkStateChanged()
414 private void handleInterfaceRemoved(String iface) { in handleInterfaceRemoved()
431 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged()
436 public void interfaceRemoved(String iface) { in interfaceRemoved()
/frameworks/base/services/core/jni/
Dcom_android_server_TestNetworkService.cpp50 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/lowpan/java/android/net/lowpan/
DLowpanManager.java113 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
/frameworks/base/media/java/android/media/
DRemoteDisplay.java45 private native long nativeListen(String iface, String opPackageName); in nativeListen()
72 public static RemoteDisplay listen(String iface, Listener listener, Handler handler, in listen()
120 private void startListening(String iface) { in startListening()
/frameworks/base/services/core/java/com/android/server/connectivity/tethering/
DOffloadController.java286 public void setInterfaceQuota(String iface, long quotaBytes) { in setInterfaceQuota()
303 private void maybeUpdateStats(String iface) { in maybeUpdateStats()
325 private boolean maybeUpdateDataLimit(String iface) { in maybeUpdateDataLimit()
368 final String iface = currentUpstreamInterface(); in setUpstreamLinkProperties() local
443 final String iface = currentUpstreamInterface(); in pushUpstreamParameters() local

12345