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

1 2 3 4 5 6 7 8 91011>>

  /system/netd/
ResolverController.cpp 30 int ResolverController::setDefaultInterface(const char* iface) {
32 ALOGD("setDefaultInterface iface = %s\n", iface);
35 _resolv_set_default_iface(iface);
40 int ResolverController::setInterfaceDnsServers(const char* iface, char** servers, int numservers) {
42 ALOGD("setInterfaceDnsServers iface = %s\n", iface);
45 _resolv_set_nameservers_for_iface(iface, servers, numservers);
50 int ResolverController::setInterfaceAddress(const char* iface, struct in_addr* addr) {
52 ALOGD("setInterfaceAddress iface = %s\n", iface)
    [all...]
ThrottleController.h 22 static int setInterfaceThrottle(const char *iface, int rxKbps, int txKbps);
23 static int getInterfaceRxThrottle(const char *iface, int *rx);
24 static int getInterfaceTxThrottle(const char *iface, int *tx);
28 static void reset(const char *iface);
ResolverController.h 28 int setDefaultInterface(const char* iface);
29 int setInterfaceDnsServers(const char* iface, char** servers, int numservers);
30 int setInterfaceAddress(const char* iface, struct in_addr* addr);
32 int flushInterfaceDnsCache(const char* iface);
  /frameworks/base/core/java/android/net/
INetworkManagementEventObserver.aidl 28 * @param iface The interface.
31 void interfaceStatusChanged(String iface, boolean up);
37 * @param iface The interface.
40 void interfaceLinkStateChanged(String iface, boolean up);
45 * @param iface The interface.
47 void interfaceAdded(String iface);
52 * @param iface The interface.
54 void interfaceRemoved(String iface);
61 * @param iface The interface on which the limit was detected.
63 void limitReached(String limitName, String iface);
    [all...]
IThrottleManager.aidl 27 long getByteCount(String iface, int dir, int period, int ago);
29 int getThrottle(String iface);
31 long getResetTime(String iface);
33 long getPeriodStartTime(String iface);
35 long getCliffThreshold(String iface, int cliff);
37 int getCliffLevel(String iface, int cliff);
  /external/dhcpcd/
ipv4ll.c 88 struct interface *iface = arg; local
91 delete_timeout(NULL, iface);
92 iface->state->probes = 0;
93 iface->state->claims = 0;
94 if (iface->addr.s_addr) {
95 iface->state->conflicts = 0;
96 if (IN_LINKLOCAL(htonl(iface->addr.s_addr))) {
97 send_arp_announce(iface);
102 if (iface->state->offer == NULL)
105 addr = iface->state->offer->yiaddr
125 struct interface *iface = arg; local
    [all...]
duid.h 33 size_t get_duid(unsigned char *duid, const struct interface *iface);
arp.c 48 send_arp(const struct interface *iface, int op, in_addr_t sip, in_addr_t tip)
56 ar.ar_hrd = htons(iface->family);
58 ar.ar_hln = iface->hwlen;
63 memcpy(p, iface->hwaddr, iface->hwlen);
64 p += iface->hwlen;
68 retval = iface->hwlen;
74 retval = send_raw_packet(iface, ETHERTYPE_ARP, arp_buffer, len);
79 handle_arp_failure(struct interface *iface)
84 if ((iface->state->offer != NULL &
107 struct interface *iface = arg; local
203 struct interface *iface = arg; local
248 struct interface *iface = arg; local
    [all...]
  /libcore/luni/src/main/java/java/sql/
Wrapper.java 33 * @param iface -
39 <T> T unwrap(Class<T> iface) throws SQLException;
45 * @param iface -
51 boolean isWrapperFor(Class<?> iface) throws SQLException;
  /external/wpa_supplicant_8/src/ap/
ap_list.c 32 static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap)
36 if (iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G ||
37 iface->conf->channel != ap->channel)
53 struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *ap)
57 s = iface->ap_hash[STA_HASH(ap)];
64 static void ap_ap_list_add(struct hostapd_iface *iface, struct ap_info *ap)
66 if (iface->ap_list) {
67 ap->prev = iface->ap_list->prev;
68 iface->ap_list->prev = ap;
71 ap->next = iface->ap_list
329 struct hostapd_iface *iface = eloop_ctx; local
    [all...]
hw_features.h 23 int hostapd_get_hw_features(struct hostapd_iface *iface);
24 int hostapd_select_hw_mode(struct hostapd_iface *iface);
28 int hostapd_check_ht_capab(struct hostapd_iface *iface);
29 int hostapd_prepare_rates(struct hostapd_iface *iface,
38 static inline int hostapd_get_hw_features(struct hostapd_iface *iface)
43 static inline int hostapd_select_hw_mode(struct hostapd_iface *iface)
58 static inline int hostapd_check_ht_capab(struct hostapd_iface *iface)
63 static inline int hostapd_prepare_rates(struct hostapd_iface *iface,
  /external/wpa_supplicant_8/hostapd/
dump_state.h 12 int handle_dump_state_iface(struct hostapd_iface *iface, void *ctx);
  /frameworks/base/services/java/com/android/server/net/
NetworkAlertObserver.java 26 public void interfaceStatusChanged(String iface, boolean up) {
31 public void interfaceRemoved(String iface) {
36 public void interfaceLinkStateChanged(String iface, boolean up) {
41 public void interfaceAdded(String iface) {
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_priv.c 57 static void wpa_priv_cmd_register(struct wpa_priv_interface *iface,
60 if (iface->drv_priv) {
62 if (iface->driver->set_wpa)
63 iface->driver->set_wpa(iface->drv_priv, 0);
64 if (iface->driver->deinit)
65 iface->driver->deinit(iface->drv_priv);
66 iface->drv_priv = NULL;
67 iface->wpas_registered = 0
443 struct wpa_priv_interface *iface = ctx; local
591 struct wpa_priv_interface *iface = eloop_ctx; local
700 struct wpa_priv_interface *iface; local
965 struct wpa_priv_interface *iface = ctx; local
1028 struct wpa_priv_interface *iface = ctx; local
1073 struct wpa_priv_interface *iface = ctx; local
1146 struct wpa_priv_interface *interfaces = NULL, *iface; local
    [all...]
main_none.c 22 struct wpa_interface iface; local
34 memset(&iface, 0, sizeof(iface));
37 if (wpa_supplicant_add_iface(global, &iface) == NULL)
main_symbian.cpp 24 struct wpa_interface iface; local
36 memset(&iface, 0, sizeof(iface));
39 if (wpa_supplicant_add_iface(global, &iface) == NULL)
  /external/bluetooth/glib/tests/gobject/
ifaceinit.c 63 static void test_iface1_base_init (TestIface1Class *iface);
64 static void test_iface1_default_init (TestIface1Class *iface, gpointer class_data);
73 static void test_iface2_base_init (TestIface2Class *iface);
82 static void test_iface3_base_init (TestIface3Class *iface);
91 static void test_iface4_base_init (TestIface4Class *iface);
100 static void test_iface5_base_init (TestIface5Class *iface);
109 static void test_iface6_base_init (TestIface6Class *iface);
151 #define CHECK_IFACE_TWICE(iface) G_STMT_START { \
155 g_assert (G_TYPE_IS_INTERFACE (((GTypeInterface*) iface)->g_type)); \
157 g_assert (((GTypeInterface*) iface)->g_instance_type == 0);
379 TestIfaceClass *iface; local
    [all...]
  /external/mesa3d/src/pixelflinger2/
pixelflinger2.cpp 32 static void DepthRangef(GGLInterface * iface, GLclampf zNear, GLclampf zFar)
34 GGL_GET_CONTEXT(ctx, iface);
39 static void Viewport(GGLInterface * iface, GLint x, GLint y, GLsizei width, GLsizei height)
41 GGL_GET_CONTEXT(ctx, iface);
48 static void CullFace(GGLInterface * iface, GLenum mode)
50 GGL_GET_CONTEXT(ctx, iface);
57 static void FrontFace(GGLInterface * iface, GLenum mode)
59 GGL_GET_CONTEXT(ctx, iface);
66 static void BlendColor(GGLInterface * iface, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
68 GGL_GET_CONTEXT(ctx, iface);
    [all...]
  /external/libsepol/src/
iface_record.c 56 const sepol_iface_t * iface,
60 if (sepol_iface_key_create(handle, iface->name, key_ptr) < 0) {
62 "interface %s", iface->name);
74 int sepol_iface_compare(const sepol_iface_t * iface,
78 return strcmp(iface->name, key->name);
81 int sepol_iface_compare2(const sepol_iface_t * iface,
85 return strcmp(iface->name, iface2->name);
89 int sepol_iface_create(sepol_handle_t * handle, sepol_iface_t ** iface)
104 *iface = tmp_iface;
112 const char *sepol_iface_get_name(const sepol_iface_t * iface)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_priv.c 43 static void wpa_priv_cmd_register(struct wpa_priv_interface *iface,
46 if (iface->drv_priv) {
48 if (iface->driver->deinit)
49 iface->driver->deinit(iface->drv_priv);
50 iface->drv_priv = NULL;
51 iface->wpas_registered = 0;
54 if (iface->l2) {
57 l2_packet_deinit(iface->l2);
58 iface->l2 = NULL
320 struct wpa_priv_interface *iface = ctx; local
457 struct wpa_priv_interface *iface = eloop_ctx; local
560 struct wpa_priv_interface *iface; local
825 struct wpa_priv_interface *iface = ctx; local
888 struct wpa_priv_interface *iface = ctx; local
960 struct wpa_priv_interface *interfaces = NULL, *iface; local
    [all...]
  /external/bluetooth/glib/gio/
gvolume.c 174 GVolumeIface *iface; local
178 iface = G_VOLUME_GET_IFACE (volume);
180 return (* iface->get_name) (volume);
196 GVolumeIface *iface; local
200 iface = G_VOLUME_GET_IFACE (volume);
202 return (* iface->get_icon) (volume);
221 GVolumeIface *iface; local
225 iface = G_VOLUME_GET_IFACE (volume);
227 return (* iface->get_uuid) (volume);
243 GVolumeIface *iface; local
265 GVolumeIface *iface; local
286 GVolumeIface *iface; local
309 GVolumeIface *iface; local
332 GVolumeIface *iface; local
366 GVolumeIface *iface; local
405 GVolumeIface *iface; local
440 GVolumeIface *iface; local
474 GVolumeIface *iface; local
507 GVolumeIface *iface; local
534 GVolumeIface *iface; local
587 GVolumeIface *iface; local
    [all...]
gappinfo.c 148 GAppInfoIface *iface; local
152 iface = G_APP_INFO_GET_IFACE (appinfo);
154 return (* iface->dup) (appinfo);
170 GAppInfoIface *iface; local
178 iface = G_APP_INFO_GET_IFACE (appinfo1);
180 return (* iface->equal) (appinfo1, appinfo2);
200 GAppInfoIface *iface; local
204 iface = G_APP_INFO_GET_IFACE (appinfo);
206 return (* iface->get_id) (appinfo);
220 GAppInfoIface *iface; local
241 GAppInfoIface *iface; local
262 GAppInfoIface *iface; local
287 GAppInfoIface *iface; local
314 GAppInfoIface *iface; local
340 GAppInfoIface *iface; local
372 GAppInfoIface *iface; local
402 GAppInfoIface *iface; local
430 GAppInfoIface *iface; local
459 GAppInfoIface *iface; local
500 GAppInfoIface *iface; local
521 GAppInfoIface *iface; local
542 GAppInfoIface *iface; local
578 GAppInfoIface *iface; local
600 GAppInfoIface *iface; local
666 GAppInfoIface *iface; local
696 GAppInfoIface *iface; local
    [all...]
gdrive.c 167 GDriveIface *iface; local
171 iface = G_DRIVE_GET_IFACE (drive);
173 return (* iface->get_name) (drive);
188 GDriveIface *iface; local
192 iface = G_DRIVE_GET_IFACE (drive);
194 return (* iface->get_icon) (drive);
208 GDriveIface *iface; local
212 iface = G_DRIVE_GET_IFACE (drive);
214 return (* iface->has_volumes) (drive);
231 GDriveIface *iface; local
252 GDriveIface *iface; local
272 GDriveIface *iface; local
294 GDriveIface *iface; local
314 GDriveIface *iface; local
338 GDriveIface *iface; local
371 GDriveIface *iface; local
405 GDriveIface *iface; local
441 GDriveIface *iface; local
475 GDriveIface *iface; local
507 GDriveIface *iface; local
534 GDriveIface *iface; local
    [all...]
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 54 InterfaceConfiguration getInterfaceConfig(String iface);
59 void setInterfaceConfig(String iface, in InterfaceConfiguration cfg);
64 void clearInterfaceAddresses(String iface);
69 void setInterfaceDown(String iface);
74 void setInterfaceUp(String iface);
79 void setInterfaceIpv6PrivacyExtensions(String iface, boolean enable);
84 void disableIpv6(String iface);
89 void enableIpv6(String iface);
95 RouteInfo[] getRoutes(String iface);
100 void addRoute(String iface, in RouteInfo route)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java 17 package com.android.dx.cf.iface;

Completed in 1368 milliseconds

1 2 3 4 5 6 7 8 91011>>