HomeSort by relevance Sort by last modified time
    Searched refs:iface (Results 151 - 175 of 382) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/bluetooth/glib/gio/
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...]
gemblem.c 49 static void g_emblem_iface_init (GIconIface *iface);
354 g_emblem_iface_init (GIconIface *iface)
356 iface->hash = g_emblem_hash;
357 iface->equal = g_emblem_equal;
358 iface->to_tokens = g_emblem_to_tokens;
359 iface->from_tokens = g_emblem_from_tokens;
gemblemedicon.c 50 static void g_emblemed_icon_icon_iface_init (GIconIface *iface);
346 g_emblemed_icon_icon_iface_init (GIconIface *iface)
348 iface->hash = g_emblemed_icon_hash;
349 iface->equal = g_emblemed_icon_equal;
350 iface->to_tokens = g_emblemed_icon_to_tokens;
351 iface->from_tokens = g_emblemed_icon_from_tokens;
gicon.c 124 GIconIface *iface; local
128 iface = G_ICON_GET_IFACE (icon);
130 return (* iface->hash) ((GIcon *)icon);
146 GIconIface *iface; local
157 iface = G_ICON_GET_IFACE (icon1);
159 return (* iface->equal) (icon1, icon2);
  /dalvik/dx/src/com/android/dx/cf/direct/
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;
DirectClassFile.java 21 import com.android.dx.cf.iface.Attribute;
22 import com.android.dx.cf.iface.AttributeList;
23 import com.android.dx.cf.iface.ClassFile;
24 import com.android.dx.cf.iface.FieldList;
25 import com.android.dx.cf.iface.MethodList;
26 import com.android.dx.cf.iface.ParseException;
27 import com.android.dx.cf.iface.ParseObserver;
28 import com.android.dx.cf.iface.StdAttributeList;
  /external/doclava/src/com/google/doclava/
Hierarchy.java 114 for (ClassInfo iface : cl.interfaces()) {
115 hdf.setValue("interfaces." + i + ".class.label", iface.name());
116 hdf.setValue("interfaces." + i + ".class.qualified", iface.qualifiedName());
117 if (iface.checkLevel()) {
118 hdf.setValue("interfaces." + i + ".class.link", iface.htmlPage());
  /external/wpa_supplicant_8/src/ap/
drv_callbacks.c 294 static struct hostapd_data * get_hapd_bssid(struct hostapd_iface *iface,
305 for (i = 0; i < iface->num_bss; i++) {
306 if (os_memcmp(bssid, iface->bss[i]->own_addr, ETH_ALEN) == 0)
307 return iface->bss[i];
318 hapd = get_hapd_bssid(hapd->iface, bssid);
328 struct hostapd_iface *iface = hapd->iface; local
338 hapd = get_hapd_bssid(iface, bssid);
349 hapd = iface->bss[0];
360 for (i = 0; i < iface->num_bss; i++
448 struct hostapd_iface *iface = hapd->iface; local
    [all...]
ieee802_11.c 45 if (hapd->iface->current_rates == NULL)
49 num = hapd->iface->num_rates;
60 for (i = 0, count = 0; i < hapd->iface->num_rates && count < num;
63 *pos = hapd->iface->current_rates[i].rate / 5;
64 if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
70 hapd->iface->num_rates < 8)
82 if (hapd->iface->current_rates == NULL)
85 num = hapd->iface->num_rates;
95 for (i = 0, count = 0; i < hapd->iface->num_rates && count < num + 8;
100 *pos = hapd->iface->current_rates[i].rate / 5
1729 struct hostapd_iface *iface = hapd->iface; local
1759 struct hostapd_iface *iface = hapd->iface; local
1785 struct hostapd_iface *iface = hapd->iface; local
    [all...]
  /external/webkit/Source/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp 783 static void atk_action_interface_init(AtkActionIface* iface)
785 iface->do_action = webkit_accessible_action_do_action;
786 iface->get_n_actions = webkit_accessible_action_get_n_actions;
787 iface->get_description = webkit_accessible_action_get_description;
788 iface->get_keybinding = webkit_accessible_action_get_keybinding;
789 iface->get_name = webkit_accessible_action_get_name;
988 static void atk_selection_interface_init(AtkSelectionIface* iface)
990 iface->add_selection = webkit_accessible_selection_add_selection;
991 iface->clear_selection = webkit_accessible_selection_clear_selection;
992 iface->ref_selection = webkit_accessible_selection_ref_selection
    [all...]
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 88 DispatcherClass(const interface_type* iface, Expression* target);
108 DispatcherClass::DispatcherClass(const interface_type* iface, Expression* target)
290 RpcProxyClass(const interface_type* iface, InterfaceType* interfaceType);
301 RpcProxyClass::RpcProxyClass(const interface_type* iface, InterfaceType* interfaceType)
304 this->comment = gather_comments(iface->comments_token->extra);
359 EventListenerClass(const interface_type* iface, Type* listenerType);
374 EventListenerClass::EventListenerClass(const interface_type* iface, Type* listenerType)
375 :DispatcherClass(iface, new FieldVariable(THIS_VALUE, "_listener"))
379 this->type = new Type(iface->package ? iface->package : ""
    [all...]
  /external/libusb/libusb/os/
darwin_usb.c 53 static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int iface);
54 static int darwin_release_interface(struct libusb_device_handle *dev_handle, int iface);
122 int8_t i, iface; local
126 for (iface = 0 ; iface < USB_MAXINTERFACES ; iface++) {
127 cInterface = &priv->interfaces[iface];
129 if (dev_handle->claimed_interfaces & (1 << iface)) {
133 *ifcp = iface;
756 static int get_endpoints (struct libusb_device_handle *dev_handle, int iface) {
789 usbi_info (HANDLE_CTX (dev_handle), "interface: %i pipe %i: dir: %i number: %i", iface, i, direction, number); local
999 uint8_t pipeRef, iface; local
1080 uint8_t direction, number, interval, pipeRef, iface; local
1133 uint8_t pipeRef, iface; local
1258 uint8_t pipeRef, iface; local
1269 usbi_info (ITRANSFER_CTX (itransfer), "WARNING: aborting all transactions on interface %d pipe %d", iface, pipeRef); local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
TransferPipe.java 52 void go(IInterface iface, FileDescriptor fd, String prefix,
73 static void go(Caller caller, IInterface iface, FileDescriptor out,
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
78 static void go(Caller caller, IInterface iface, FileDescriptor out,
80 if ((iface.asBinder()) instanceof Binder) {
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
  /external/wpa_supplicant_6/wpa_supplicant/
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);
ctrl_iface_dbus_handlers.c 76 static void wpas_dbus_free_wpa_interface(struct wpa_interface *iface)
78 free((char *) iface->driver);
79 free((char *) iface->driver_param);
80 free((char *) iface->confname);
81 free((char *) iface->bridge_ifname);
99 struct wpa_interface iface; local
104 memset(&iface, 0, sizeof(iface));
116 iface.ifname = ifname;
130 iface.driver = strdup(entry.str_value)
866 char *iface = NULL, *net_id = NULL; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
main_winsvc.c 69 struct wpa_interface iface; local
78 os_memset(&iface, 0, sizeof(iface));
79 iface.driver = "ndis";
89 iface.ctrl_interface = (char *) ctrl_interface;
100 iface.ifname = (char *) adapter;
111 iface.confname = (char *) config;
122 if (wpa_supplicant_add_iface(global, &iface) == NULL) {
125 "initialization failure", iface.ifname);
  /dalvik/vm/oo/
Object.cpp 140 ClassObject* iface = clazz->iftable[i].clazz; local
141 pField = dvmFindStaticField(iface, fieldName, signature);
191 ClassObject* iface = clazz->iftable[i].clazz; local
192 pField = (Field*) dvmFindStaticField(iface, fieldName, signature);
549 Method* dvmFindInterfaceMethodHierByDescriptor(const ClassObject* iface,
552 Method* resMethod = dvmFindVirtualMethodByDescriptor(iface,
557 for (i = 0; i < iface->iftableCount; i++) {
558 resMethod = dvmFindVirtualMethodByDescriptor(iface->iftable[i].clazz,
572 Method* dvmFindInterfaceMethodHier(const ClassObject* iface,
575 Method* resMethod = dvmFindVirtualMethod(iface, methodName, proto)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 17 package com.android.dx.cf.iface;
StdMethod.java 17 package com.android.dx.cf.iface;
  /external/bluetooth/bluez/test/
test-network 45 iface = network.Connect(service) variable
  /frameworks/base/core/java/android/bluetooth/
BluetoothTetheringDataTracker.java 263 public synchronized void startReverseTether(String iface, BluetoothDevice device) {
264 mIface = iface;
291 public synchronized void stopReverseTether(String iface) {
292 NetworkUtils.stopDhcp(iface);
  /external/dhcpcd/
if-bsd.c 78 if_init(_unused struct interface *iface)
85 if_conf(_unused struct interface *iface)
141 if_address(const struct interface *iface, const struct in_addr *address,
153 strlcpy(ifa.ifra_name, iface->name, sizeof(ifa.ifra_name));
178 if_route(const struct interface *iface, const struct in_addr *dest,
225 net->s_addr != iface->net.s_addr ||
226 dest->s_addr != (iface->addr.s_addr & iface->net.s_addr))
246 link_addr(iface->name, &su.sdl);
267 ADDADDR(&iface->addr)
    [all...]
  /external/ppp/pppd/
cbcp.c 120 cbcp_init(iface)
121 int iface;
125 us = &cbcp[iface];
127 us->us_unit = iface;
133 cbcp_lowerup(iface)
134 int iface;
136 cbcp_state *us = &cbcp[iface];
210 void cbcp_protrej(int iface)
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 84 static int parseIfaceStat(const char* iface, struct IfaceStat* stat) {
103 if (!iface || !strcmp(iface, cur_iface)) {
122 static uint64_t getIfaceStatType(const char* iface, IfaceStatType type) {
126 if (parseIfaceStat(iface, &stat)) {
148 static jlong getIfaceStat(JNIEnv* env, jclass clazz, jstring iface, jint type) {
150 const char* ifaceChars = env->GetStringUTFChars(iface, NULL);
153 env->ReleaseStringUTFChars(iface, ifaceChars);

Completed in 460 milliseconds

1 2 3 4 5 67 8 91011>>