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

1 2 3 4

  /external/wpa_supplicant/
main_none.c 22 struct wpa_interface iface; local
34 memset(&iface, 0, sizeof(iface));
37 if (wpa_supplicant_add_iface(global, &iface) == NULL)
main_winmain.c 31 struct wpa_interface *ifaces, *iface; local
44 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
49 iface->confname = "default";
50 iface->driver = "ndis";
51 iface->ifname = "";
main.c 131 struct wpa_interface *ifaces, *iface; local
142 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
155 iface->bridge_ifname = optarg;
161 iface->confname = optarg;
164 iface->ctrl_interface = optarg;
167 iface->driver = optarg;
192 iface->ifname = optarg;
202 iface->driver_param = optarg;
231 iface = os_realloc(ifaces, iface_count *
233 if (iface == NULL
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
main_none.c 22 struct wpa_interface iface; local
34 memset(&iface, 0, sizeof(iface));
37 if (wpa_supplicant_add_iface(global, &iface) == NULL)
main_symbian.cpp 24 struct wpa_interface iface; local
36 memset(&iface, 0, sizeof(iface));
39 if (wpa_supplicant_add_iface(global, &iface) == NULL)
main_winmain.c 31 struct wpa_interface *ifaces, *iface; local
44 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
49 iface->confname = "default";
50 iface->driver = "ndis";
51 iface->ifname = "";
main.c 117 struct wpa_interface *ifaces, *iface; local
128 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
141 iface->bridge_ifname = optarg;
147 iface->confname = optarg;
150 iface->ctrl_interface = optarg;
153 iface->driver = optarg;
178 iface->ifname = optarg;
188 iface->driver_param = optarg;
214 iface = os_realloc(ifaces, iface_count *
216 if (iface == NULL
    [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;
  /external/bluetooth/glib/gobject/
gtypeplugin.c 122 GTypePluginClass *iface; local
126 iface = G_TYPE_PLUGIN_GET_CLASS (plugin);
127 iface->use_plugin (plugin);
141 GTypePluginClass *iface; local
145 iface = G_TYPE_PLUGIN_GET_CLASS (plugin);
146 iface->unuse_plugin (plugin);
166 GTypePluginClass *iface; local
172 iface = G_TYPE_PLUGIN_GET_CLASS (plugin);
173 iface->complete_type_info (plugin,
197 GTypePluginClass *iface; local
    [all...]
  /external/bluetooth/bluez/test/
test-network 31 iface = network.Connect(service) variable
  /external/bluetooth/glib/gio/
gasyncresult.c 168 GAsyncResultIface *iface; local
172 iface = G_ASYNC_RESULT_GET_IFACE (res);
174 return (* iface->get_user_data) (res);
188 GAsyncResultIface *iface; local
192 iface = G_ASYNC_RESULT_GET_IFACE (res);
194 return (* iface->get_source_object) (res);
gseekable.c 91 GSeekableIface *iface; local
95 iface = G_SEEKABLE_GET_IFACE (seekable);
97 return (* iface->tell) (seekable);
111 GSeekableIface *iface; local
115 iface = G_SEEKABLE_GET_IFACE (seekable);
117 return (* iface->can_seek) (seekable);
146 GSeekableIface *iface; local
150 iface = G_SEEKABLE_GET_IFACE (seekable);
152 return (* iface->seek) (seekable, offset, type, cancellable, error);
166 GSeekableIface *iface; local
201 GSeekableIface *iface; local
    [all...]
  /system/netd/
NetlinkHandler.cpp 55 const char *iface = evt->findParam("INTERFACE"); local
56 notifyInterfaceAdded(iface);
58 const char *iface = evt->findParam("INTERFACE"); local
59 notifyInterfaceRemoved(iface);
62 const char *iface = evt->findParam("INTERFACE"); local
70 snprintf(msg, sizeof(msg), "Iface added %s", name);
78 snprintf(msg, sizeof(msg), "Iface removed %s", name);
86 snprintf(msg, sizeof(msg), "Iface is %s %s", (isUp ? "up" : "down"), name);

Completed in 518 milliseconds

1 2 3 4