Home
last modified time | relevance | path

Searched refs:iface_name (Results 1 – 10 of 10) sorted by relevance

/external/autotest/client/site_tests/network_NegotiatedLANSpeed/
Dnetwork_NegotiatedLANSpeed.py9 def run_once(self, iface_name = 'eth0'): argument
11 if not self.iface_up(iface_name):
12 utils.system('ifconfig %s up' % iface_name)
13 if not self.iface_up(iface_name):
16 if not int(self.get_speed(iface_name)) >= 1000:
Dcontrol14 job.run_test('network_NegotiatedLANSpeed', iface_name = 'eth0', tag = 'eth0')
/external/wpa_supplicant_8/hostapd/hidl/1.3/
Dhostapd.h78 const hidl_string& iface_name,
88 const hidl_string& iface_name,
115 V1_0::HostapdStatus removeAccessPointInternal(const std::string& iface_name);
121 const std::string& iface_name,
Dhostapd.cpp716 const hidl_string& iface_name, removeAccessPoint_cb _hidl_cb) in removeAccessPoint() argument
719 this, &Hostapd::removeAccessPointInternal, _hidl_cb, iface_name); in removeAccessPoint()
747 const hidl_string& iface_name, const hidl_array<uint8_t, 6>& client_address, in forceClientDisconnect() argument
751 this, &Hostapd::forceClientDisconnectInternal, _hidl_cb, iface_name, in forceClientDisconnect()
940 V1_0::HostapdStatus Hostapd::removeAccessPointInternal(const std::string& iface_name) in removeAccessPointInternal() argument
946 const auto it = br_interfaces_.find(iface_name); in removeAccessPointInternal()
950 br_interfaces_.erase(iface_name); in removeAccessPointInternal()
953 interfaces.push_back(iface_name); in removeAccessPointInternal()
992 V1_2::HostapdStatus Hostapd::forceClientDisconnectInternal(const std::string& iface_name, in forceClientDisconnectInternal() argument
995 struct hostapd_data *hapd = hostapd_get_iface(interfaces_, iface_name.c_str()); in forceClientDisconnectInternal()
[all …]
/external/toybox/toys/net/
Difconfig.c195 char iface_name[IFNAMSIZ]; in display_ifconfig() local
203 ipv6_addr, &plen, &iscope, iface_name); in display_ifconfig()
207 if (!strcmp(name, iface_name)) { in display_ifconfig()
299 static void show_iface(char *iface_name) in show_iface() argument
322 if (iface_name) { in show_iface()
323 if (!strcmp(iface_name, name)) { in show_iface()
324 display_ifconfig(iface_name, 1, val); in show_iface()
339 if (iface_name) display_ifconfig(iface_name, 1, 0); in show_iface()
/external/dnsmasq/src/
Drfc2131.c117 size_t dhcp_reply(struct dhcp_context* context, char* iface_name, int int_index, size_t sz, in dhcp_reply() argument
149 iface_id.net = iface_name; in dhcp_reply()
444 log_packet("BOOTP", logaddr, mess->chaddr, mess->hlen, iface_name, message, mess->xid); in dhcp_reply()
686 log_packet("PXE", &mess->yiaddr, emac, emac_len, iface_name, (char*) mess->file, in dhcp_reply()
724 log_packet("PXE", NULL, emac, emac_len, iface_name, in dhcp_reply()
751 log_packet("DHCPDECLINE", option_ptr(opt, 0), emac, emac_len, iface_name, in dhcp_reply()
779 … log_packet("DHCPRELEASE", &mess->ciaddr, emac, emac_len, iface_name, message, mess->xid); in dhcp_reply()
842 log_packet("DHCPDISCOVER", opt ? option_ptr(opt, 0) : NULL, emac, emac_len, iface_name, in dhcp_reply()
847 log_packet("DHCPOFFER", &mess->yiaddr, emac, emac_len, iface_name, NULL, mess->xid); in dhcp_reply()
931 log_packet("DHCPREQUEST", &mess->yiaddr, emac, emac_len, iface_name, NULL, mess->xid); in dhcp_reply()
[all …]
Ddnsmasq.h791 size_t dhcp_reply(struct dhcp_context* context, char* iface_name, int int_index, size_t sz,
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/
Dcontrol44 job.run_test('documentscan_AppTestWithFakeLorgnette', iface_name='all', tag='all')
/external/scapy/scapy/arch/
Dlinux.py176 def get_alias_address(iface_name, ip_mask, gw_str, metric): argument
201 if not ifname.decode("utf8").startswith(iface_name):
/external/scapy/scapy/arch/windows/
D__init__.py731 for iface_name in sorted(self.data):
732 dev = self.data[iface_name]