HomeSort by relevance Sort by last modified time
    Searched refs:ifname (Results 126 - 150 of 358) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/dhcpcd-6.8.2/
if.h 108 int split_interface_lease(const char *ifname, int *ifname_len,
153 int ip6_use_tempaddr(const char *ifname);
154 int ip6_temp_preferred_lifetime(const char *ifname);
155 int ip6_temp_valid_lifetime(const char *ifname);
control.c 206 make_sock(struct sockaddr_un *sa, const char *ifname, int unpriv)
238 ifname ? "-" : "", ifname ? ifname : "");
247 control_start1(struct dhcpcd_ctx *ctx, const char *ifname, mode_t fmode)
253 if ((fd = make_sock(&sa, ifname, (fmode & S_UNPRIV) == S_UNPRIV)) == -1)
275 control_start(struct dhcpcd_ctx *ctx, const char *ifname)
279 if ((fd = control_start1(ctx, ifname, S_PRIV)) == -1)
285 if (ifname == NULL && (fd = control_start1(ctx, NULL, S_UNPRIV)) != -1){
333 control_open(struct dhcpcd_ctx *ctx, const char *ifname)
    [all...]
  /external/wpa_supplicant_8/src/ap/
beacon.h 28 const char *ifname);
  /system/connectivity/shill/shims/
pppd_plugin.c 25 PPPOnConnect(ifname);
ppp.h 49 void OnConnect(const std::string& ifname);
  /system/connectivity/shill/supplicant/
mock_supplicant_process_proxy.h 38 bool(const std::string& ifname, std::string* rpc_identifier));
  /external/wpa_supplicant_8/wpa_supplicant/
eapol_test.py 23 def __init__(self, ifname):
24 self.ifname = ifname
25 self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
27 raise Exception("Failed to connect to eapol_test (%s)" % ifname)
28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
63 logger.debug(self.ifname + ": " + ev)
75 def run(ifname, count, no_fast_reauth, res):
76 et = eapol_test(ifname)
main_winmain.c 45 iface->ifname = "";
57 ifaces[i].ifname == NULL) {
mesh.h 19 int wpas_mesh_add_interface(struct wpa_supplicant *wpa_s, char *ifname,
  /external/dhcpcd-6.8.2/dhcpcd-hooks/
50-ntp.conf 37 local cf="$state_dir/ntp.conf.$ifname"
87 local cf="$ntp_conf_dir/$ifname" x=
101 if [ -e "$ntp_conf_dir/$ifname" ]; then
102 rm "$ntp_conf_dir/$ifname"
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet.h 49 * @ifname: Interface name
65 const char *ifname, const u8 *own_addr, unsigned short protocol,
77 const char *br_ifname, const char *ifname, const u8 *own_addr,
  /external/wpa_supplicant_8/wpa_supplicant/examples/
dbus-listen-preq.py 15 print "Usage: %s <ifname>" % sys.argv[0]
49 ifname = sys.argv[1]
51 path = wpas.GetInterface(ifname)
wpas-dbus-new-getall.py 20 ifname = sys.argv[1]
23 path = wpas.GetInterface(ifname)
wpas-dbus-new.py 32 ifname = if_obj.Get(WPAS_DBUS_INTERFACES_INTERFACE, 'Ifname',
34 print ifname
120 ifname = sys.argv[1]
125 path = wpas.GetInterface(ifname)
130 path = wpas.CreateInterface({'Ifname': ifname, 'Driver': 'test'})
wpas-test.py 30 ifname = sys.argv[1]
39 path = wpas.getInterface(ifname)
44 path = wpas.addInterface(ifname, {'driver': dbus.Variant('wext')})
wpas-dbus-new-wps.py 43 print "Missing ifname argument"
66 ifname = sys.argv[1]
68 path = wpas.GetInterface(ifname)
  /system/extras/tests/net_test/
net_test.py 174 def GetInterfaceIndex(ifname):
176 ifr = struct.pack("%dsi" % IFNAMSIZ, ifname, 0)
181 def SetInterfaceHWAddr(ifname, hwaddr):
187 ifr = struct.pack("%dsH6s" % IFNAMSIZ, ifname, scapy.ARPHDR_ETHER, hwaddr)
191 def SetInterfaceState(ifname, up):
193 ifr = struct.pack("%dsH" % IFNAMSIZ, ifname, 0)
200 ifr = struct.pack("%dsH" % IFNAMSIZ, ifname, flags)
204 def SetInterfaceUp(ifname):
205 return SetInterfaceState(ifname, True)
208 def SetInterfaceDown(ifname)
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_macsec_qca.c 58 char ifname[IFNAMSIZ + 1]; member in struct:macsec_qca_data
127 static int macsec_qca_get_ifflags(const char *ifname, int *flags)
139 os_strlcpy(ifr.ifr_name, ifname, IFNAMSIZ);
152 static int macsec_qca_set_ifflags(const char *ifname, int flags)
164 os_strlcpy(ifr.ifr_name, ifname, IFNAMSIZ);
178 static int macsec_qca_get_ifstatus(const char *ifname, int *status)
190 os_strlcpy(ifmr.ifm_name, ifname, IFNAMSIZ);
206 static int macsec_qca_multi(const char *ifname, const u8 *addr, int add)
222 os_strlcpy(ifr.ifr_name, ifname, IFNAMSIZ);
308 static void * macsec_qca_init(void *ctx, const char *ifname)
    [all...]
driver_wext.c 49 os_strlcpy(iwr.ifr_name, drv->ifname, IFNAMSIZ);
79 os_strlcpy(iwr.ifr_name, drv->ifname, IFNAMSIZ);
104 os_strlcpy(iwr.ifr_name, drv->ifname, IFNAMSIZ);
133 os_strlcpy(iwr.ifr_name, drv->ifname, IFNAMSIZ);
176 os_strlcpy(iwr.ifr_name, drv->ifname, IFNAMSIZ);
219 os_strlcpy(iwr.ifr_name, drv->ifname, IFNAMSIZ);
550 if (len > sizeof(event.interface_status.ifname))
551 len = sizeof(event.interface_status.ifname) - 1;
552 os_memcpy(event.interface_status.ifname, buf, len);
558 event.interface_status.ifname,
    [all...]
driver_none.c 53 static void * none_driver_init(void *ctx, const char *ifname)
  /external/wpa_supplicant_8/src/fst/
fst_iface.h 23 char ifname[IFNAMSIZ + 1]; member in struct:fst_iface
28 struct fst_iface * fst_iface_create(struct fst_group *g, const char *ifname,
41 return i->ifname;
  /bionic/libc/bionic/
net_if.cpp 47 char* if_indextoname(unsigned ifindex, char* ifname) {
58 return (rc == -1) ? nullptr : strncpy(ifname, ifr.ifr_name, IFNAMSIZ);
61 unsigned if_nametoindex(const char* ifname) {
67 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
  /hardware/libhardware/include/hardware/
bt_pan.h 44 bt_status_t error, const char* ifname);
  /hardware/qcom/wlan/qcwcn/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 79 linux_set_iface_flags(drv->global->ioctl_sock, driver->first_bss->ifname, 1);
85 ret = linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname, macaddr);
93 os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
124 linux_set_iface_flags(drv->global->ioctl_sock, driver->first_bss->ifname, 0);
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_connect.py 58 global ifname
78 def __init__(self,ifname,wpas_dbus_interface,addr,
81 self.ifname = ifname
110 self.path = self.wpas.GetInterface(ifname)
118 {'Ifname': ifname, 'Driver': 'test'})

Completed in 176 milliseconds

1 2 3 4 56 7 8 91011>>