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

1 2 34 5 6 7 8 91011>>

  /external/opencore/pvmi/pvmf/include/
pvmi_media_io_clock_extension.h 69 * @param iface Output parameter where pointer to an instance of the
73 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
pvmf_duration_infomessage.h 76 OSCL_IMPORT_REF virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface);
  /external/opencore/fileformats/common/parser/src/
pvmi_datastreamsyncinterface_ref_factory.cpp 93 bool PVMIDataStreamSyncInterfaceRefFactory::queryInterface(const PVUuid& uuid, PVInterface*& iface)
95 iface = NULL;
100 iface = OSCL_STATIC_CAST(PVInterface*, myInterface);
  /external/opencore/nodes/common/include/
pvmf_local_data_source.h 71 bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
75 iface = this;
80 iface = NULL;
pvmf_streaming_data_source.h 76 bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
80 iface = this;
85 iface = NULL;
pvmf_ffparsernode_extension.h 73 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
pvmfamrencnode_extension.h 73 * @param iface Output parameter where a pointer to an instance of the requested
77 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/nodes/pvsocketnode/src/
pvmf_socket_node_extension_interface.cpp 31 bool PVMFSocketNodeExtensionInterfaceImpl::queryInterface(const PVUuid& uuid, PVInterface*& iface)
36 iface = this;
41 iface = NULL;
  /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...]
testgobject.c 39 static void iface_base_init (TestIfaceClass *iface);
40 static void iface_base_finalize (TestIfaceClass *iface);
65 iface_base_init (TestIfaceClass *iface)
74 iface_base_finalize (TestIfaceClass *iface)
88 g_print ("Iface-FOO: \"%s\" from %p\n", string, tiobj);
94 TestIfaceClass *iface = giface; local
98 g_assert (G_TYPE_FROM_INTERFACE (iface) == TEST_TYPE_IFACE);
104 iface->print_string = print_foo;
110 TestIfaceClass *iface; local
115 iface = TEST_IFACE_GET_CLASS (tiobj)
286 TestIfaceClass *iface = giface; 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...]
  /external/dhcpcd/
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/glib/tests/gobject/
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/bluetooth/glib/gio/
gfileicon.c 47 static void g_file_icon_icon_iface_init (GIconIface *iface);
48 static void g_file_icon_loadable_icon_iface_init (GLoadableIconIface *iface);
260 g_file_icon_icon_iface_init (GIconIface *iface)
262 iface->hash = g_file_icon_hash;
263 iface->equal = g_file_icon_equal;
264 iface->to_tokens = g_file_icon_to_tokens;
265 iface->from_tokens = g_file_icon_from_tokens;
380 g_file_icon_loadable_icon_iface_init (GLoadableIconIface *iface)
382 iface->load = g_file_icon_load;
383 iface->load_async = g_file_icon_load_async
    [all...]
gunixvolume.c 64 static void g_unix_volume_volume_iface_init (GVolumeIface *iface);
518 g_unix_volume_volume_iface_init (GVolumeIface *iface)
520 iface->get_name = g_unix_volume_get_name;
521 iface->get_icon = g_unix_volume_get_icon;
522 iface->get_uuid = g_unix_volume_get_uuid;
523 iface->get_drive = g_unix_volume_get_drive;
524 iface->get_mount = g_unix_volume_get_mount;
525 iface->can_mount = g_unix_volume_can_mount;
526 iface->can_eject = g_unix_volume_can_eject;
527 iface->should_automount = g_unix_volume_should_automount
    [all...]
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 121 private void notifyInterfaceLinkStatusChanged(String iface, boolean link) {
124 obs.interfaceLinkStatusChanged(iface, link);
134 private void notifyInterfaceAdded(String iface) {
137 obs.interfaceAdded(iface);
147 private void notifyInterfaceRemoved(String iface) {
150 obs.interfaceRemoved(iface);
173 * Format: "NNN Iface added <name>"
174 * "NNN Iface removed <name>"
175 * "NNN Iface changed <name> <up/down>"
177 if (cooked.length < 4 || !cooked[1].equals("Iface")) {
    [all...]
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 43 static void g_winhttp_file_file_iface_init (GFileIface *iface);
749 g_winhttp_file_file_iface_init (GFileIface *iface)
751 iface->dup = g_winhttp_file_dup;
752 iface->hash = g_winhttp_file_hash;
753 iface->equal = g_winhttp_file_equal;
754 iface->is_native = g_winhttp_file_is_native;
755 iface->has_uri_scheme = g_winhttp_file_has_uri_scheme;
756 iface->get_uri_scheme = g_winhttp_file_get_uri_scheme;
757 iface->get_basename = g_winhttp_file_get_basename;
758 iface->get_path = g_winhttp_file_get_path
    [all...]
  /frameworks/base/core/java/android/net/
ConnectivityManager.java 439 public int tether(String iface) {
441 return mService.tether(iface);
451 public int untether(String iface) {
453 return mService.untether(iface);
516 * @param iface The name of the interface we're interested in
521 public int getLastTetherError(String iface) {
523 return mService.getLastTetherError(iface);
  /external/webkit/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp 668 static void atk_action_interface_init(AtkActionIface* iface)
670 iface->do_action = webkit_accessible_action_do_action;
671 iface->get_n_actions = webkit_accessible_action_get_n_actions;
672 iface->get_description = webkit_accessible_action_get_description;
673 iface->get_keybinding = webkit_accessible_action_get_keybinding;
674 iface->get_name = webkit_accessible_action_get_name;
805 static void atk_selection_interface_init(AtkSelectionIface* iface)
807 iface->add_selection = webkit_accessible_selection_add_selection;
808 iface->clear_selection = webkit_accessible_selection_clear_selection;
809 iface->ref_selection = webkit_accessible_selection_ref_selection
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 20 import com.android.dx.cf.iface.Attribute;
21 import com.android.dx.cf.iface.ParseException;
22 import com.android.dx.cf.iface.ParseObserver;
AttributeListParser.java 19 import com.android.dx.cf.iface.Attribute;
20 import com.android.dx.cf.iface.ParseException;
21 import com.android.dx.cf.iface.ParseObserver;
22 import com.android.dx.cf.iface.StdAttributeList;
  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_dbus.h 84 void wpa_supplicant_dbus_ctrl_iface_deinit(struct ctrl_iface_dbus_priv *iface);
101 u32 wpa_supplicant_dbus_next_objid(struct ctrl_iface_dbus_priv *iface);
121 wpa_supplicant_dbus_ctrl_iface_deinit(struct ctrl_iface_dbus_priv *iface)
  /dalvik/dx/src/com/android/dx/cf/iface/
ClassFile.java 17 package com.android.dx.cf.iface;
  /external/opencore/fileformats/common/parser/include/
pvmi_datastreamsyncinterface_ref_factory.h 49 bool queryInterface(const PVUuid& uuid, PVInterface*& iface);

Completed in 1458 milliseconds

1 2 34 5 6 7 8 91011>>