HomeSort by relevance Sort by last modified time
    Searched defs:ifaces (Results 1 - 21 of 21) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/
main_winmain.c 31 struct wpa_interface *ifaces, *iface; local
44 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
45 if (ifaces == NULL)
61 if ((ifaces[i].confname == NULL &&
62 ifaces[i].ctrl_interface == NULL) ||
63 ifaces[i].ifname == NULL) {
70 if (wpa_supplicant_add_iface(global, &ifaces[i]) == NULL)
79 os_free(ifaces);
main.c 117 struct wpa_interface *ifaces, *iface; local
128 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
129 if (ifaces == NULL)
214 iface = os_realloc(ifaces, iface_count *
218 ifaces = iface;
219 iface = &ifaces[iface_count - 1];
238 if ((ifaces[i].confname == NULL &&
239 ifaces[i].ctrl_interface == NULL) ||
240 ifaces[i].ifname == NULL) {
248 if (wpa_supplicant_add_iface(global, &ifaces[i]) == NULL
    [all...]
wpa_supplicant_i.h 168 struct wpa_supplicant *ifaces; member in struct:wpa_global
  /external/wpa_supplicant_8/wpa_supplicant/
main_winmain.c 25 struct wpa_interface *ifaces, *iface; local
38 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
39 if (ifaces == NULL)
55 if ((ifaces[i].confname == NULL &&
56 ifaces[i].ctrl_interface == NULL) ||
57 ifaces[i].ifname == NULL) {
64 if (wpa_supplicant_add_iface(global, &ifaces[i]) == NULL)
73 os_free(ifaces);
main.c 123 struct wpa_interface *ifaces, *iface; local
134 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
135 if (ifaces == NULL)
234 iface = os_realloc(ifaces, iface_count *
238 ifaces = iface;
239 iface = &ifaces[iface_count - 1];
258 if ((ifaces[i].confname == NULL &&
259 ifaces[i].ctrl_interface == NULL) ||
260 ifaces[i].ifname == NULL) {
268 if (wpa_supplicant_add_iface(global, &ifaces[i]) == NULL
    [all...]
wpa_supplicant_i.h 209 struct wpa_supplicant *ifaces; member in struct:wpa_global
  /external/libvpx/
example_xma.c 32 } ifaces[] = variable in typeref:struct:__anon8405
54 ifaces[0].name);
56 for (i = 0; i < sizeof(ifaces) / sizeof(ifaces[0]); i++)
58 ifaces[i].name,
59 vpx_codec_iface_name(ifaces[i].iface));
84 vpx_codec_iface_t *iface = ifaces[0].iface;
105 for (j = 0; j < sizeof(ifaces) / sizeof(ifaces[0]); j++)
106 if (!strcmp(ifaces[j].name, argv[i])
    [all...]
vpxdec.c 58 } ifaces[] = variable in typeref:struct:__anon8535
159 for (i = 0; i < sizeof(ifaces) / sizeof(ifaces[0]); i++)
161 ifaces[i].name,
162 vpx_codec_iface_name(ifaces[i].iface));
456 for (i = 0; i < sizeof(ifaces) / sizeof(ifaces[0]); i++)
457 if(!vpx_codec_peek_stream_info(ifaces[i].iface,
461 *fourcc = ifaces[i].fourcc;
742 for (j = 0; j < sizeof(ifaces) / sizeof(ifaces[0]); j++
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiInfo.java 44 ArrayList<String> ifaces = mClassToInterface.get(cl); local
45 if (ifaces == null) {
48 for (String iface : ifaces) {
  /external/tcpdump/
print-cnfp.c 69 u_int32_t ifaces; /* src,dst ifaces */ member in struct:nfrec
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_introspect.c 237 struct dl_list ifaces; local
238 dl_list_init(&ifaces);
239 extract_interfaces(&ifaces, obj_dsc);
240 add_interfaces(&ifaces, xml);
  /frameworks/base/core/tests/coretests/src/android/net/
NetworkStatsTest.java 274 final HashSet<String> ifaces = Sets.newHashSet(); local
275 assertValues(stats.getTotal(null, ifaces), 0L, 0L, 0L, 0L, 0L);
277 ifaces.add(TEST_IFACE2);
278 assertValues(stats.getTotal(null, ifaces), 1024L, 64L, 0L, 0L, 0L);
  /frameworks/base/core/java/android/net/
EthernetDataTracker.java 220 final String[] ifaces = mNMService.listInterfaces(); local
221 for (String iface : ifaces) {
NetworkStats.java 378 final HashSet<String> ifaces = new HashSet<String>(); local
381 ifaces.add(iface);
384 return ifaces.toArray(new String[ifaces.size()]);
445 * null} to include all ifaces.
  /external/dhcpcd/
dhcpcd.c 90 struct interface *ifaces = NULL; variable in typeref:struct:interface
176 while (ifaces) {
177 iface = ifaces;
178 ifaces = iface->next;
243 for (ifp = ifaces; ifp; ifp = ifp->next)
259 for (ifp = ifaces; ifp; ifp = ifp->next) {
267 ifaces = ifp->next;
881 for (iface = ifaces; iface; iface = iface->next)
1260 for (ifn = ifaces; ifn; ifn = ifn->next) {
1275 ifaces = ifp
    [all...]
  /external/bluetooth/glib/gobject/
gobject.c 592 GType *ifaces; local
597 ifaces = g_type_interfaces (G_OBJECT_CLASS_TYPE (oclass), &n_ifaces);
602 ifaces[n_ifaces],
606 g_free (ifaces);
    [all...]
gsignal.c 315 GType *ifaces, type = itype; local
337 ifaces = g_type_interfaces (itype, &n_ifaces);
342 key.itype = ifaces[n_ifaces];
347 g_free (ifaces);
351 g_free (ifaces);
    [all...]
gtype.c 527 IFaceEntry *ifaces = CLASSED_NODE_IFACES_ENTRIES (node) - 1; local
537 check = ifaces + i;
543 ifaces = check;
3316 GType *ifaces; local
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java 102 private HashMap<String, TetherInterfaceSM> mIfaces; // all tethered/tetherable ifaces
388 Set ifaces = mIfaces.keySet(); local
389 for (Object iface : ifaces) {
512 String[] ifaces = new String[0]; local
514 ifaces = mNMService.listInterfaces();
519 for (String iface : ifaces) {
535 String[] ifaces = new String[0]; local
537 ifaces = mNMService.listInterfaces();
542 for (String iface : ifaces) {
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkPolicyManagerService.java 249 /** Currently active network rules for ifaces. */
257 /** Set of ifaces that are metered. */
983 final String[] ifaces = mNetworkRules.get(policy); local
    [all...]
  /external/guava/guava/lib/
jdiff.jar 

Completed in 425 milliseconds