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

1 23 4 5 6 7 8 91011>>

  /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/opencore/nodes/pvdummyinputnode/include/
pvmf_fileinput_node_extension.h 52 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/nodes/pvomxbasedecnode/include/
pvmf_omx_basedec_node_extension_interface.h 41 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/nodes/pvomxencnode/include/
pvmf_omx_enc_node_extension_interface.h 41 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /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...]
  /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...]
  /external/opencore/nodes/common/include/
pvmf_source_context_data.h 92 bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
96 iface = this;
101 iface = NULL;
177 bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
181 iface = this;
186 iface = NULL;
254 bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
258 iface = this;
263 iface = NULL;
343 bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
    [all...]
pvmf_track_selection_extension.h 45 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /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);
231 struct interface_data *iface = list->data; local
232 if (!strcmp(name, iface->name))
233 return iface;
243 struct interface_data *iface; local
389 struct interface_data *iface; local
471 struct interface_data *iface; local
501 struct interface_data *iface; local
    [all...]
  /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 170 // TODO - remove and rely on real notifications of the current iface
176 public void interfaceLinkStatusChanged(String iface, boolean link) {
177 Log.d(TAG, "interfaceLinkStatusChanged " + iface + ", " + link);
180 if (isWifi(iface)) {
182 } else if (isUsb(iface)) {
189 TetherInterfaceSM sm = mIfaces.get(iface);
192 sm = new TetherInterfaceSM(iface, mLooper, usb);
193 mIfaces.put(iface, sm);
199 mIfaces.remove(iface);
205 private boolean isUsb(String iface) {
1198 String iface = findActiveUpstreamIface(); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
Member.java 17 package com.android.dx.cf.iface;
ParseObserver.java 17 package com.android.dx.cf.iface;
  /external/opencore/nodes/pvdummyoutputnode/include/
pvmf_dummy_fileoutput_config.h 68 * @param iface Output parameter where pointer to an instance of the
72 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/nodes/pvfileoutputnode/include/
pvmf_fileoutput_config.h 66 * @param iface Output parameter where pointer to an instance of the
70 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/nodes/pvmp4ffcomposernode/include/
pvmp4ffcn_trackconfig.h 59 * @param iface Output parameter where pointer to an instance of the
63 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/protocols/systems/common/include/
pv_2way_basic_interfaces.h 98 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/pvmi/pvmf/include/
pvmf_durationinfomessage_extension.h 69 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
pvmf_errorinfomessage_extension.h 70 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
pvmf_metadatainfomessage_extension.h 72 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;

Completed in 180 milliseconds

1 23 4 5 6 7 8 91011>>