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

1 23 4 5 6 7 8 910

  /dalvik/dx/src/com/android/dx/cf/direct/
MethodListParser.java 19 import com.android.dx.cf.iface.AttributeList;
20 import com.android.dx.cf.iface.Member;
21 import com.android.dx.cf.iface.StdMethod;
22 import com.android.dx.cf.iface.StdMethodList;
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseException.java 17 package com.android.dx.cf.iface;
StdFieldList.java 17 package com.android.dx.cf.iface;
StdMethodList.java 17 package com.android.dx.cf.iface;
Member.java 17 package com.android.dx.cf.iface;
ParseObserver.java 17 package com.android.dx.cf.iface;
  /device/samsung/crespo/alsa-lib/src/
names.c 40 * \param iface a string identifying interface ("pcm", "ctl", "seq", "rawmidi")
48 int snd_names_list(const char *iface ATTRIBUTE_UNUSED,
  /external/bluetooth/bluez/test/
monitor-bluetooth 9 iface = interface[interface.rfind(".") + 1:]
11 print "{%s.PropertyChanged} [%s] %s = %s" % (iface, path, name, val)
14 iface = interface[interface.rfind(".") + 1:]
16 print "{%s.%s} [%s] Path = %s" % (iface, member, path, val)
  /external/libvpx/vpx/
vpx_decoder.h 112 * \param[in] iface Pointer to the alogrithm interface to use.
123 vpx_codec_iface_t *iface,
132 #define vpx_codec_dec_init(ctx, iface, cfg, flags) \
133 vpx_codec_dec_init_ver(ctx, iface, cfg, flags, VPX_DECODER_ABI_VERSION)
142 * \param[in] iface Pointer to the alogrithm interface
153 vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface,
  /system/netd/
NatController.h 38 bool interfaceExists(const char *iface);
ThrottleController.cpp 68 int ThrottleController::setInterfaceThrottle(const char *iface, int rxKbps, int txKbps) {
74 strncpy(ifn, iface, sizeof(ifn)-1);
157 void ThrottleController::reset(const char *iface) {
160 sprintf(cmd, "qdisc del dev %s root", iface);
162 sprintf(cmd, "qdisc del dev %s ingress", iface);
168 int ThrottleController::getInterfaceRxThrottle(const char *iface, int *rx) {
173 int ThrottleController::getInterfaceTxThrottle(const char *iface, int *tx) {
SoftapController.cpp 52 int SoftapController::getPrivFuncNum(char *iface, const char *fname) {
57 strncpy(wrq.ifr_name, iface, sizeof(wrq.ifr_name));
73 int SoftapController::startDriver(char *iface) {
81 if (!iface || (iface[0] == '\0')) {
83 iface = mIface;
85 fnum = getPrivFuncNum(iface, "START");
90 strncpy(wrq.ifr_name, iface, sizeof(wrq.ifr_name));
100 int SoftapController::stopDriver(char *iface) {
108 if (!iface || (iface[0] == '\0'))
330 char *iface; local
    [all...]
  /external/bluetooth/glib/tests/gobject/
ifaceinherit.c 127 init_base_interface (TestIfaceClass *iface)
129 iface->val = 21;
145 TestIfaceClass *iface = g_type_interface_peek (g_class, iface_type); local
146 return iface && iface->val == 21;
150 init_derived_interface (TestIfaceClass *iface)
152 iface->val = 42;
168 TestIfaceClass *iface = g_type_interface_peek (g_class, iface_type); local
169 return iface && iface->val == 42
    [all...]
defaultiface.c 54 test_static_iface_default_init (TestStaticIfaceClass *iface)
56 iface->val = 42;
105 test_dynamic_iface_default_init (TestStaticIfaceClass *iface)
108 iface->val = 42;
112 test_dynamic_iface_default_finalize (TestStaticIfaceClass *iface)
  /external/dhcpcd/
net.h 127 #define get_mtu(iface) do_mtu(iface, 0)
128 #define set_mtu(iface, mtu) do_mtu(iface, mtu)
150 #define add_route(iface, dest, mask, gate, metric) \
151 if_route(iface, dest, mask, gate, metric, 1)
152 #define change_route(iface, dest, mask, gate, metric) \
153 if_route(iface, dest, mask, gate, metric, 0)
154 #define del_route(iface, dest, mask, gate, metric) \
155 if_route(iface, dest, mask, gate, metric, -1
    [all...]
client.c 256 get_duid(unsigned char *duid, const struct interface *iface)
300 hw = htons(iface->family);
310 memcpy(p, iface->hwaddr, iface->hwlen);
311 p += iface->hwlen;
392 struct interface *iface = state->interface; local
399 if (stat(iface->leasefile, &sb) == -1) {
404 if (!IN_LINKLOCAL(ntohl(iface->addr.s_addr)))
406 iface->leasefile);
407 if ((dhcp = read_lease(iface)) == NULL)
464 struct interface *iface = state->interface; local
753 struct interface *iface = state->interface; local
906 struct interface *iface = state->interface; local
1016 struct interface *iface = state->interface; local
1131 struct interface *iface = state->interface; local
1380 struct interface *iface = state->interface; local
1537 struct interface *iface = state->interface; local
1607 struct interface *iface = state->interface; local
1768 struct interface *iface; local
    [all...]
if-bsd.c 101 if_route(const struct interface *iface, const struct in_addr *dest,
152 net->s_addr != iface->net.s_addr ||
153 dest->s_addr != (iface->addr.s_addr & iface->net.s_addr))
173 link_addr(iface->name, &su.sdl);
194 ADDADDR(&iface->addr);
204 open_link_socket(struct interface *iface)
212 if (iface->link_fd != -1)
213 close(iface->link_fd);
214 iface->link_fd = fd
    [all...]
net.c 369 struct interface *iface = NULL; local
428 iface = xzalloc(sizeof(*iface));
429 strlcpy(iface->name, ifname, IF_NAMESIZE);
430 snprintf(iface->leasefile, PATH_MAX, LEASEFILE, ifname);
431 memcpy(&iface->hwaddr, hwaddr, hwlen);
432 iface->hwlen = hwlen;
434 iface->family = family;
435 iface->arpable = !(ifr.ifr_flags & (IFF_NOARP | IFF_LOOPBACK));
438 iface->raw_fd = -1
    [all...]
  /external/bluetooth/bluez/gdbus/
object.c 115 static void generate_interface_xml(GString *gstr, struct interface_data *iface)
120 for (method = iface->methods; method && method->name; method++) {
133 for (signal = iface->signals; signal && signal->name; signal++) {
161 struct interface_data *iface = list->data; local
164 iface->name);
166 generate_interface_xml(gstr, iface);
228 struct interface_data *iface = list->data; local
229 if (!strcmp(name, iface->name))
230 return iface;
240 struct interface_data *iface; local
338 struct interface_data *iface; local
387 struct interface_data *iface; local
432 struct interface_data *iface; local
    [all...]
  /external/libvpx/
example_xma.c 31 const vpx_codec_iface_t *iface; member in struct:__anon5201
59 vpx_codec_iface_name(ifaces[i].iface));
84 vpx_codec_iface_t *iface = ifaces[0].iface; local
110 iface = ifaces[k].iface;
144 if (!(vpx_codec_get_caps(iface) & VPX_CODEC_CAP_XMA))
146 printf("%s does not support XMA mode!\n", vpx_codec_iface_name(iface));
160 if (vpx_codec_dec_init(&decoder, iface, &cfg, VPX_CODEC_USE_XMA))
  /external/bluetooth/glib/gio/
gwin32mount.c 61 static void g_win32_mount_mount_iface_init (GMountIface *iface);
335 g_win32_mount_mount_iface_init (GMountIface *iface)
337 iface->get_root = g_win32_mount_get_root;
338 iface->get_name = g_win32_mount_get_name;
339 iface->get_icon = g_win32_mount_get_icon;
340 iface->get_uuid = g_win32_mount_get_uuid;
341 iface->get_drive = g_win32_mount_get_drive;
342 iface->get_volume = g_win32_mount_get_volume;
343 iface->can_unmount = g_win32_mount_can_unmount;
344 iface->can_eject = g_win32_mount_can_eject
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java 178 // TODO - remove and rely on real notifications of the current iface
184 public void interfaceLinkStatusChanged(String iface, boolean link) {
185 Log.d(TAG, "interfaceLinkStatusChanged " + iface + ", " + link);
188 if (isWifi(iface)) {
190 } else if (isUsb(iface)) {
197 TetherInterfaceSM sm = mIfaces.get(iface);
200 sm = new TetherInterfaceSM(iface, mLooper, usb);
201 mIfaces.put(iface, sm);
207 mIfaces.remove(iface);
213 private boolean isUsb(String iface) {
1217 String iface = findActiveUpstreamIface(); local
    [all...]
  /external/wpa_supplicant/
ctrl_iface_dbus.h 82 void wpa_supplicant_dbus_ctrl_iface_deinit(struct ctrl_iface_dbus_priv *iface);
96 u32 wpa_supplicant_dbus_next_objid(struct ctrl_iface_dbus_priv *iface);
116 wpa_supplicant_dbus_ctrl_iface_deinit(struct ctrl_iface_dbus_priv *iface)
  /external/bluetooth/glib/gobject/
gtype.c 195 static IFaceHolder* type_iface_peek_holder_L (TypeNode *iface,
197 static gboolean type_iface_vtable_base_init_Wm (TypeNode *iface,
199 static void type_iface_vtable_iface_init_Wm (TypeNode *iface,
237 IFaceEntry *iface_entries; /* for !iface types */
334 IFaceData iface; member in union:_TypeData
555 type_lookup_prerequisite_L (TypeNode *iface,
558 if (NODE_IS_IFACE (iface) && IFACE_NODE_N_PREREQUISITES (iface))
560 GType *prerequisites = IFACE_NODE_PREREQUISITES (iface) - 1;
561 guint n_prerequisites = IFACE_NODE_N_PREREQUISITES (iface);
887 TypeNode *iface = lookup_type_node_I (iface_type); local
1323 TypeNode *iface, *prerequisite_node; local
1410 TypeNode *iface; local
2562 TypeNode *iface = lookup_type_node_I (interface_type); local
2599 TypeNode *iface = lookup_type_node_I (interface_type); local
2840 TypeNode *iface; local
2883 TypeNode *iface; local
3612 TypeNode *iface; local
3687 TypeNode *node, *iface; local
3704 TypeNode *node, *iface; local
3725 TypeNode *node, *iface; local
3758 TypeNode *node, *iface; local
    [all...]
  /external/dnsmasq/src/
network.c 67 if (strncmp(name, alias->iface, IF_NAMESIZE) == 0)
71 if (!(newindex = if_nametoindex(bridge->iface)))
79 strncpy(name, bridge->iface, IF_NAMESIZE);
121 struct irec *iface; local
129 for (iface = *irecp; iface; iface = iface->next)
130 if (sockaddr_isequal(&iface->addr, addr))
191 if ((iface = whine_malloc(sizeof(struct irec)))
392 struct irec *iface; local
669 struct irec *iface; local
    [all...]

Completed in 204 milliseconds

1 23 4 5 6 7 8 910