HomeSort by relevance Sort by last modified time
    Searched defs:iface (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /external/wpa_supplicant_8/wpa_supplicant/
main_none.c 16 struct wpa_interface iface; local
28 memset(&iface, 0, sizeof(iface));
31 if (wpa_supplicant_add_iface(global, &iface) == NULL)
main_winmain.c 25 struct wpa_interface *ifaces, *iface; local
38 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
43 iface->confname = "default";
44 iface->driver = "ndis";
45 iface->ifname = "";
main.c 140 struct wpa_interface *ifaces, *iface; local
151 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
165 iface->bridge_ifname = optarg;
171 iface->confname = optarg;
174 iface->ctrl_interface = optarg;
177 iface->driver = optarg;
205 iface->ifname = optarg;
208 iface->confanother = optarg;
224 iface->driver_param = optarg;
260 iface = os_realloc_array(ifaces, iface_count
    [all...]
offchannel.c 23 struct wpa_supplicant *iface; local
31 iface = wpa_s->global->ifaces;
32 while (iface) {
34 iface->own_addr, ETH_ALEN) == 0)
36 iface = iface->next;
38 if (iface) {
41 iface->ifname, wpa_s->ifname);
42 return iface;
52 struct wpa_supplicant *iface; local
238 struct wpa_supplicant *iface; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
Field.java 17 package com.android.dx.cf.iface;
Method.java 17 package com.android.dx.cf.iface;
ParseException.java 17 package com.android.dx.cf.iface;
Attribute.java 17 package com.android.dx.cf.iface;
FieldList.java 17 package com.android.dx.cf.iface;
MethodList.java 17 package com.android.dx.cf.iface;
ParseObserver.java 17 package com.android.dx.cf.iface;
StdField.java 17 package com.android.dx.cf.iface;
StdFieldList.java 17 package com.android.dx.cf.iface;
StdMethod.java 17 package com.android.dx.cf.iface;
StdMethodList.java 17 package com.android.dx.cf.iface;
AttributeList.java 17 package com.android.dx.cf.iface;
Member.java 17 package com.android.dx.cf.iface;
ClassFile.java 17 package com.android.dx.cf.iface;
StdAttributeList.java 17 package com.android.dx.cf.iface;
StdMember.java 17 package com.android.dx.cf.iface;
  /external/dhcpcd/
ipv4ll.c 88 struct interface *iface = arg; local
91 delete_timeout(NULL, iface);
92 iface->state->probes = 0;
93 iface->state->claims = 0;
94 if (iface->addr.s_addr) {
95 iface->state->conflicts = 0;
96 if (IN_LINKLOCAL(htonl(iface->addr.s_addr))) {
97 send_arp_announce(iface);
102 if (iface->state->offer == NULL)
105 addr = iface->state->offer->yiaddr
125 struct interface *iface = arg; local
    [all...]
bind.c 123 struct interface *iface = arg; local
124 struct if_state *state = iface->state;
130 close_sockets(iface);
143 iface->name, inet_ntoa(lease->addr));
149 iface->name, inet_ntoa(lease->addr));
156 lease->addr.s_addr = iface->addr.s_addr;
157 syslog(LOG_INFO, "%s: received approval for %s", iface->name,
171 iface->name, inet_ntoa(lease->addr));
176 iface->name, DHCP_MIN_LEASE);
186 iface->name, lease->rebindtime)
    [all...]
  /external/webkit/Source/WebCore/bindings/gobject/
WebKitDOMEventTarget.cpp 72 WebKitDOMEventTargetIface* iface = WEBKIT_DOM_EVENT_TARGET_GET_IFACE(target); local
74 if (iface->dispatch_event)
75 iface->dispatch_event(target, event, error);
84 WebKitDOMEventTargetIface* iface = WEBKIT_DOM_EVENT_TARGET_GET_IFACE(target); local
86 if (iface->add_event_listener)
87 return iface->add_event_listener(target, eventName, handler, bubble, userData);
97 WebKitDOMEventTargetIface* iface = WEBKIT_DOM_EVENT_TARGET_GET_IFACE(target); local
99 if (iface->remove_event_listener)
100 return iface->remove_event_listener(target, eventName, handler, bubble);
  /external/skia/tests/
GLInterfaceValidation.cpp 63 SkAutoTUnref<const GrGLInterface> iface; local
65 iface.reset(interfaceFactories[i].fFactory());
66 REPORTER_ASSERT(reporter, NULL != iface.get());
67 if (iface.get()) {
71 if (iface.get()->fBindingsExported & binding) {
72 REPORTER_ASSERT(reporter, iface.get()->validate(binding));
  /external/libppp/src/
atm.c 168 atm_CreateDevice(struct physical *p, const char *iface, unsigned vpi,
182 strncpy(sock.snatm_if, iface, IFNAMSIZ);
187 iface, vpi, vci);
215 char iface[25]; local
218 if (sscanf(p->name.full + PPPOA_LEN + 1, "%25[A-Za-z0-9]:%u.%u", iface,
225 dev = atm_CreateDevice(p, iface, vpi, vci);

Completed in 391 milliseconds

1 2 3 4 5 6 7