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

1 2 34 5 6 7 8 910

  /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...]
gunixmount.c 65 static void g_unix_mount_mount_iface_init (GMountIface *iface);
453 g_unix_mount_mount_iface_init (GMountIface *iface)
455 iface->get_root = g_unix_mount_get_root;
456 iface->get_name = g_unix_mount_get_name;
457 iface->get_icon = g_unix_mount_get_icon;
458 iface->get_uuid = g_unix_mount_get_uuid;
459 iface->get_drive = g_unix_mount_get_drive;
460 iface->get_volume = g_unix_mount_get_volume;
461 iface->can_unmount = g_unix_mount_can_unmount;
462 iface->can_eject = g_unix_mount_can_eject
    [all...]
gdummyfile.c 40 static void g_dummy_file_file_iface_init (GFileIface *iface);
411 g_dummy_file_file_iface_init (GFileIface *iface)
413 iface->dup = g_dummy_file_dup;
414 iface->hash = g_dummy_file_hash;
415 iface->equal = g_dummy_file_equal;
416 iface->is_native = g_dummy_file_is_native;
417 iface->has_uri_scheme = g_dummy_file_has_uri_scheme;
418 iface->get_uri_scheme = g_dummy_file_get_uri_scheme;
419 iface->get_basename = g_dummy_file_get_basename;
420 iface->get_path = g_dummy_file_get_path
    [all...]
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 136 private void notifyInterfaceLinkStatusChanged(String iface, boolean link) {
139 obs.interfaceLinkStatusChanged(iface, link);
149 private void notifyInterfaceAdded(String iface) {
152 obs.interfaceAdded(iface);
162 private void notifyInterfaceRemoved(String iface) {
165 obs.interfaceRemoved(iface);
197 * Format: "NNN Iface added <name>"
198 * "NNN Iface removed <name>"
199 * "NNN Iface changed <name> <up/down>"
201 if (cooked.length < 4 || !cooked[1].equals("Iface")) {
    [all...]
  /external/bluetooth/glib/gobject/
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/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 458 public int tether(String iface) {
460 return mService.tether(iface);
470 public int untether(String iface) {
472 return mService.untether(iface);
535 * @param iface The name of the interface we're interested in
540 public int getLastTetherError(String iface) {
542 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;
MemberListParser.java 19 import com.android.dx.cf.iface.AttributeList;
20 import com.android.dx.cf.iface.Member;
21 import com.android.dx.cf.iface.ParseException;
22 import com.android.dx.cf.iface.ParseObserver;
23 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)
main_winsvc.c 75 struct wpa_interface iface; local
84 os_memset(&iface, 0, sizeof(iface));
85 iface.driver = "ndis";
95 iface.ctrl_interface = (char *) ctrl_interface;
106 iface.ifname = (char *) adapter;
117 iface.confname = (char *) config;
128 if (wpa_supplicant_add_iface(global, &iface) == NULL) {
131 "initialization failure", iface.ifname);
  /dalvik/dx/src/com/android/dx/cf/iface/
ClassFile.java 17 package com.android.dx.cf.iface;
  /external/libvpx/vpx/
vpx_encoder.h 566 * \param[in] iface Pointer to the algorithm interface to use.
577 vpx_codec_iface_t *iface,
587 #define vpx_codec_enc_init(ctx, iface, cfg, flags) \
588 vpx_codec_enc_init_ver(ctx, iface, cfg, flags, VPX_ENCODER_ABI_VERSION)
599 * \param[in] iface Pointer to the algorithm interface to use.
610 vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface,
  /external/wpa_supplicant_6/wpa_supplicant/examples/
wpas-test.py 50 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
51 iface.scan()
54 res = iface.scanResults()
87 iface.scan()
  /build/tools/droiddoc/templates/
hierarchy.cs 37 <?cs each:iface = cl.interfaces ?>
38 <?cs if:iface.exists ?>
39 <?cs call:type_link(iface.class) ?>
41 <?cs var:iface.value ?>
  /device/samsung/crespo/alsa-lib/modules/mixer/simple/
ac97.c 50 .iface = SND_CTL_ELEM_IFACE_MIXER,
58 .iface = SND_CTL_ELEM_IFACE_MIXER,
hda.c 51 .iface = SND_CTL_ELEM_IFACE_MIXER,
59 .iface = SND_CTL_ELEM_IFACE_MIXER,
  /external/bluetooth/glib/tests/gobject/
testcommon.h 88 static GInterfaceInfo const iface = \
93 g_type_add_interface_static (type, iface_type, &iface); \
  /external/dhcpcd/
if-linux.c 62 open_link_socket(struct interface *iface)
75 if (iface->link_fd != -1)
76 close(iface->link_fd);
77 iface->link_fd = fd;
180 link_changed(struct interface *iface)
182 return get_netlink(iface->link_fd, MSG_DONTWAIT,
183 &link_netlink, iface->name);
320 if_route(const struct interface *iface,
328 if (!(ifindex = if_nametoindex(iface->name))) {
359 (iface->addr.s_addr & iface->net.s_addr) &
    [all...]
  /build/tools/droiddoc/src/
Hierarchy.java 125 for (ClassInfo iface: cl.interfaces()) {
126 hdf.setValue("interfaces." + i + ".class.label", iface.name());
127 hdf.setValue("interfaces." + i + ".class.qualified", iface.qualifiedName());
128 if (iface.checkLevel()) {
129 hdf.setValue("interfaces." + i + ".class.link", iface.htmlPage());
  /device/samsung/crespo/alsa-lib/src/control/
namehint.c 36 snd_ctl_elem_iface_t iface; member in struct:hint_list
93 switch (list->iface) {
391 #define IFACE(v, fcn) [SND_CTL_ELEM_IFACE_##v] = (next_devices_t)fcn
396 IFACE(CARD, NULL),
397 IFACE(HWDEP, snd_ctl_hwdep_next_device),
398 IFACE(MIXER, NULL),
399 IFACE(PCM, snd_ctl_pcm_next_device),
400 IFACE(RAWMIDI, snd_ctl_rawmidi_next_device),
401 IFACE(TIMER, NULL),
402 IFACE(SEQUENCER, NULL
    [all...]
  /external/libvpx/
ivfdec.c 35 const vpx_codec_iface_t *iface; member in struct:__anon5202
124 vpx_codec_iface_name(ifaces[i].iface));
339 vpx_codec_iface_t *iface = NULL; local
374 iface = ifaces[k].iface;
497 vpx_codec_iface_t *ivf_iface = ifaces[i].iface;
499 if (iface && iface != ivf_iface)
503 iface = ivf_iface;
514 if (vpx_codec_dec_init(&decoder, iface ? iface : ifaces[0].iface, &cfg
    [all...]

Completed in 758 milliseconds

1 2 34 5 6 7 8 910