HomeSort by relevance Sort by last modified time
    Searched refs:iface (Results 26 - 50 of 234) sorted by null

12 3 4 5 6 7 8 910

  /external/dhcpcd/
bpf.c 52 open_socket(struct interface *iface, int protocol)
89 strlcpy(ifr.ifr_name, iface->name, sizeof(ifr.ifr_name));
96 if (iface->buffer_size != (size_t)buf_len) {
97 free(iface->buffer);
98 iface->buffer_size = buf_len;
99 iface->buffer = xmalloc(buf_len);
100 iface->buffer_len = iface->buffer_pos = 0;
113 fdp = &iface->arp_fd;
117 fdp = &iface->raw_fd
    [all...]
configure.c 83 run_script(const struct options *options, const char *iface,
106 e = strlen("interface") + strlen(iface) + 2;
108 snprintf(env[1], e, "interface=%s", iface);
184 delete_route(const struct interface *iface, struct rt *rt, int metric)
193 retval = del_route(iface, &rt->dest, &rt->net, &rt->gate, metric);
200 delete_routes(struct interface *iface, int metric)
206 rt = reverse_routes(iface->routes);
209 retval += delete_route(iface, rt, metric);
213 iface->routes = NULL;
232 configure_routes(struct interface *iface, const struct dhcp_message *dhcp
    [all...]
lpf.c 68 open_socket(struct interface *iface, int protocol)
86 if (!(su.sll.sll_ifindex = if_nametoindex(iface->name))) {
108 fd = &iface->arp_fd;
110 fd = &iface->raw_fd;
122 send_raw_packet(const struct interface *iface, int protocol,
135 if (!(su.sll.sll_ifindex = if_nametoindex(iface->name))) {
139 su.sll.sll_hatype = htons(iface->family);
140 su.sll.sll_halen = iface->hwlen;
141 if (iface->family == ARPHRD_INFINIBAND)
145 memset(&su.sll.sll_addr, 0xff, iface->hwlen)
    [all...]
  /external/wpa_supplicant/
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...]
ctrl_iface_dbus.c 50 static void process_watch(struct ctrl_iface_dbus_priv *iface,
53 dbus_connection_ref(iface->con);
55 iface->should_dispatch = 0;
64 if (iface->should_dispatch) {
65 while (dbus_connection_get_dispatch_status(iface->con) ==
67 dbus_connection_dispatch(iface->con);
68 iface->should_dispatch = 0;
71 dbus_connection_unref(iface->con);
93 static void connection_setup_add_watch(struct ctrl_iface_dbus_priv *iface,
106 iface, watch)
220 struct ctrl_iface_dbus_priv *iface = signal_ctx; local
245 struct ctrl_iface_dbus_priv *iface = data; local
632 struct ctrl_iface_dbus_priv *iface = wpa_s->global->dbus_ctrl_iface; local
677 struct ctrl_iface_dbus_priv *iface; local
814 struct ctrl_iface_dbus_priv *iface; local
    [all...]
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 = "";
  /external/wpa_supplicant_6/wpa_supplicant/
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...]
ctrl_iface_dbus.c 42 static void process_watch(struct ctrl_iface_dbus_priv *iface,
45 dbus_connection_ref(iface->con);
47 iface->should_dispatch = 0;
56 if (iface->should_dispatch) {
57 while (dbus_connection_get_dispatch_status(iface->con) ==
59 dbus_connection_dispatch(iface->con);
60 iface->should_dispatch = 0;
63 dbus_connection_unref(iface->con);
85 static void connection_setup_add_watch(struct ctrl_iface_dbus_priv *iface,
98 iface, watch)
212 struct ctrl_iface_dbus_priv *iface = signal_ctx; local
237 struct ctrl_iface_dbus_priv *iface = data; local
635 struct ctrl_iface_dbus_priv *iface = wpa_s->global->dbus_ctrl_iface; local
680 struct ctrl_iface_dbus_priv *iface; local
758 struct ctrl_iface_dbus_priv *iface = wpa_s->global->dbus_ctrl_iface; local
805 struct ctrl_iface_dbus_priv *iface; local
932 struct ctrl_iface_dbus_priv *iface; local
    [all...]
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 = "";
  /external/libvpx/vpx/src/
vpx_decoder.c 22 vpx_codec_iface_t *iface,
31 else if (!ctx || !iface)
33 else if (iface->abi_version != VPX_CODEC_INTERNAL_ABI_VERSION)
35 else if ((flags & VPX_CODEC_USE_XMA) && !(iface->caps & VPX_CODEC_CAP_XMA))
37 else if ((flags & VPX_CODEC_USE_POSTPROC) && !(iface->caps & VPX_CODEC_CAP_POSTPROC))
42 ctx->iface = iface;
43 ctx->name = iface->name;
51 res = ctx->iface->init(ctx);
60 ctx->priv->iface = ctx->iface
    [all...]
vpx_encoder.c 23 vpx_codec_iface_t *iface,
32 else if (!ctx || !iface || !cfg)
34 else if (iface->abi_version != VPX_CODEC_INTERNAL_ABI_VERSION)
36 else if (!(iface->caps & VPX_CODEC_CAP_ENCODER))
38 else if ((flags & VPX_CODEC_USE_XMA) && !(iface->caps & VPX_CODEC_CAP_XMA))
41 && !(iface->caps & VPX_CODEC_CAP_PSNR))
45 ctx->iface = iface;
46 ctx->name = iface->name;
50 res = ctx->iface->init(ctx)
    [all...]
vpx_decoder_compat.c 23 const char *vpx_dec_iface_name(vpx_dec_iface_t *iface)
25 return vpx_codec_iface_name((vpx_codec_iface_t *)iface);
45 vpx_dec_iface_t *iface,
49 (vpx_codec_iface_t *)iface,
62 vpx_dec_caps_t vpx_dec_get_caps(vpx_dec_iface_t *iface)
64 return vpx_codec_get_caps((vpx_codec_iface_t *)iface);
68 vpx_dec_err_t vpx_dec_peek_stream_info(vpx_dec_iface_t *iface,
73 return vpx_codec_peek_stream_info((vpx_codec_iface_t *)iface, data, data_sz,
131 vpx_dec_iface_t *iface,
135 (vpx_codec_iface_t *)iface,
    [all...]
  /dalvik/tests/023-many-interfaces/src/
ManyInterfaces.java 288 static void testIface001(Interface001 iface, int count) {
290 iface.func001(); iface.func001(); iface.func001(); iface.func001();
291 iface.func001(); iface.func001(); iface.func001(); iface.func001();
292 iface.func001(); iface.func001(); iface.func001(); iface.func001()
    [all...]
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 52 InterfaceConfiguration getInterfaceConfig(String iface);
57 void setInterfaceConfig(String iface, in InterfaceConfiguration cfg);
98 void tetherInterface(String iface);
103 void untetherInterface(String iface);
186 long getInterfaceTxCounter(String iface);
191 long getInterfaceRxCounter(String iface);
196 void setInterfaceThrottle(String iface, int rxKbps, int txKbps);
202 int getInterfaceRxThrottle(String iface);
208 int getInterfaceTxThrottle(String iface);
  /system/netd/
SoftapController.h 36 int getPrivFuncNum(char *iface, const char *fname);
42 int startDriver(char *iface);
43 int stopDriver(char *iface);
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);
  /dalvik/dx/src/com/android/dx/cf/iface/
AttributeList.java 17 package com.android.dx.cf.iface;
Field.java 17 package com.android.dx.cf.iface;
Method.java 17 package com.android.dx.cf.iface;
  /external/bluetooth/glib/gio/
gloadableicon.c 90 GLoadableIconIface *iface = g_class; local
92 iface->load_async = g_loadable_icon_real_load_async;
93 iface->load_finish = g_loadable_icon_real_load_finish;
122 GLoadableIconIface *iface; local
126 iface = G_LOADABLE_ICON_GET_IFACE (icon);
128 return (* iface->load) (icon, size, type, cancellable, error);
150 GLoadableIconIface *iface; local
154 iface = G_LOADABLE_ICON_GET_IFACE (icon);
156 (* iface->load_async) (icon, size, cancellable, callback, user_data);
177 GLoadableIconIface *iface; local
218 GLoadableIconIface *iface; local
    [all...]
gfile.c 276 GFileIface *iface = g_class; local
278 iface->enumerate_children_async = g_file_real_enumerate_children_async;
279 iface->enumerate_children_finish = g_file_real_enumerate_children_finish;
280 iface->set_display_name_async = g_file_real_set_display_name_async;
281 iface->set_display_name_finish = g_file_real_set_display_name_finish;
282 iface->query_info_async = g_file_real_query_info_async;
283 iface->query_info_finish = g_file_real_query_info_finish;
284 iface->query_filesystem_info_async = g_file_real_query_filesystem_info_async;
285 iface->query_filesystem_info_finish = g_file_real_query_filesystem_info_finish;
286 iface->set_attributes_async = g_file_real_set_attributes_async
331 GFileIface *iface; local
358 GFileIface *iface; local
389 GFileIface *iface; local
424 GFileIface *iface; local
448 GFileIface *iface; local
471 GFileIface *iface; local
505 GFileIface *iface; local
529 GFileIface *iface; local
554 GFileIface *iface; local
582 GFileIface *iface; local
613 GFileIface *iface; local
671 GFileIface *iface; local
703 GFileIface *iface; local
735 GFileIface *iface; local
765 GFileIface *iface; local
814 GFileIface *iface; local
865 GFileIface *iface; local
896 GFileIface *iface; local
1044 GFileIface *iface; local
1094 GFileIface *iface; local
1125 GFileIface *iface; local
1179 GFileIface *iface; local
1229 GFileIface *iface; local
1259 GFileIface *iface; local
1299 GFileIface *iface; local
1344 GFileIface *iface; local
1373 GFileIface *iface; local
1415 GFileIface *iface; local
1469 GFileIface *iface; local
1526 GFileIface *iface; local
1609 GFileIface *iface; local
1658 GFileIface *iface; local
1687 GFileIface *iface; local
1729 GFileIface *iface; local
1759 GFileIface *iface; local
1802 GFileIface *iface; local
1832 GFileIface *iface; local
1880 GFileIface *iface; local
1912 GFileIface *iface; local
2449 GFileIface *iface; local
2546 GFileIface *iface; local
2579 GFileIface *iface; local
2654 GFileIface *iface; local
2753 GFileIface *iface; local
2875 GFileIface *iface; local
2924 GFileIface *iface; local
2967 GFileIface *iface; local
3019 GFileIface *iface; local
3067 GFileIface *iface; local
3098 GFileIface *iface; local
3139 GFileIface *iface; local
3192 GFileIface *iface; local
3250 GFileIface *iface; local
3301 GFileIface *iface; local
3390 GFileIface *iface; local
3422 GFileIface *iface; local
3653 GFileIface *iface; local
3697 GFileIface *iface; local
3737 GFileIface *iface; local
3780 GFileIface *iface; local
3820 GFileIface *iface; local
3861 GFileIface *iface; local
3900 GFileIface *iface; local
3943 GFileIface *iface; local
4233 GFileIface *iface; local
4299 GFileIface *iface; local
4362 GFileIface *iface; local
4441 GFileIface *iface; local
5000 GFileIface *iface; local
5037 GFileIface *iface; local
    [all...]
  /external/libvpx/vpx/
vpx_decoder_compat.h 146 vpx_dec_iface_t *iface; /**< Interface pointers */ member in struct:__anon5320
165 * \param[in] iface Interface pointer
168 const char *vpx_dec_iface_name(vpx_dec_iface_t *iface) DEPRECATED;
225 * \param[in] iface Pointer to the alogrithm interface to use.
234 vpx_dec_iface_t *iface,
236 #define vpx_dec_init(ctx, iface) \
237 vpx_dec_init_ver(ctx, iface, VPX_DECODER_ABI_VERSION)
258 * \param[in] iface Pointer to the alogrithm interface
261 vpx_dec_caps_t vpx_dec_get_caps(vpx_dec_iface_t *iface) DEPRECATED;
270 * \param[in] iface Pointer to the alogrithm interfac
    [all...]
  /frameworks/base/core/java/android/net/
IConnectivityManager.aidl 58 int tether(String iface);
60 int untether(String iface);
62 int getLastTetherError(String iface);
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAttribute.java 19 import com.android.dx.cf.iface.Attribute;
  /dalvik/dx/src/com/android/dx/cf/direct/
FieldListParser.java 19 import com.android.dx.cf.iface.AttributeList;
20 import com.android.dx.cf.iface.Member;
21 import com.android.dx.cf.iface.StdField;
22 import com.android.dx.cf.iface.StdFieldList;

Completed in 2187 milliseconds

12 3 4 5 6 7 8 910