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

1 2 3 4 5 6 7 8 91011>>

  /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.
65 void addressUpdated(String address, String iface, int flags, int scope)
    [all...]
  /system/netd/
ResolverController.h 28 int setDefaultInterface(const char* iface);
29 int setInterfaceDnsServers(const char* iface, const char * domains, const char** servers,
31 int setInterfaceAddress(const char* iface, struct in_addr* addr);
33 int flushInterfaceDnsCache(const char* iface);
34 int setDnsInterfaceForPid(const char* iface, int pid);
36 int setDnsInterfaceForUidRange(const char* iface, int uid_start, int uid_end);
37 int clearDnsInterfaceForUidRange(const char* iface, int uid_start, int uid_end);
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, const char* domains,
43 ALOGD("setInterfaceDnsServers iface = %s\n", iface);
45 _resolv_set_nameservers_for_iface(iface, servers, numservers, domains);
50 int ResolverController::setInterfaceAddress(const char* iface, struct in_addr* addr) {
52 ALOGD("setInterfaceAddress iface = %s\n", iface)
    [all...]
SecondaryTableController.h 42 int addRoute(SocketClient *cli, char *iface, char *dest, int prefixLen, char *gateway);
43 int removeRoute(SocketClient *cli, char *iface, char *dest, int prefixLen, char *gateway);
44 int findTableNumber(const char *iface);
46 int modifyLocalRoute(int tableIndex, const char *action, const char *iface, const char *addr);
47 int addUidRule(const char *iface, int uid_start, int uid_end);
48 int removeUidRule(const char *iface, int uid_start, int uid_end);
49 int addFwmarkRule(const char *iface);
50 int removeFwmarkRule(const char *iface);
51 int addFwmarkRoute(const char* iface, const char *dest, int prefix);
52 int removeFwmarkRoute(const char* iface, const char *dest, int prefix)
    [all...]
  /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
250 struct interface *iface = arg; local
    [all...]
  /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 static 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
254 struct hostapd_iface *iface = eloop_ctx; local
    [all...]
acs.h 15 enum hostapd_chan_status acs_init(struct hostapd_iface *iface);
16 int hostapd_acs_completed(struct hostapd_iface *iface);
20 static inline enum hostapd_chan_status acs_init(struct hostapd_iface *iface)
hw_features.c 48 int hostapd_get_hw_features(struct hostapd_iface *iface)
50 struct hostapd_data *hapd = iface->bss[0];
66 iface->hw_flags = flags;
68 hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
69 iface->hw_features = modes;
70 iface->num_hw_features = num_modes;
105 int hostapd_prepare_rates(struct hostapd_iface *iface,
114 if (iface->conf->basic_rates)
115 basic_rates = iface->conf->basic_rates
    [all...]
beacon.h 25 void ieee802_11_set_beacons(struct hostapd_iface *iface);
26 void ieee802_11_update_beacons(struct hostapd_iface *iface);
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,
  /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/hostapd/
dump_state.h 12 int handle_dump_state_iface(struct hostapd_iface *iface, void *ctx);
  /frameworks/base/core/java/com/android/server/net/
BaseNetworkObserver.java 29 public void interfaceStatusChanged(String iface, boolean up) {
34 public void interfaceRemoved(String iface) {
39 public void addressUpdated(String address, String iface, int flags, int scope) {
44 public void addressRemoved(String address, String iface, int flags, int scope) {
49 public void interfaceLinkStateChanged(String iface, boolean up) {
54 public void interfaceAdded(String iface) {
64 public void limitReached(String limitName, String iface) {
  /external/chromium_org/third_party/skia/include/gpu/gl/
GrGLExtensions.h 22 bool init(GrGLBinding binding, const GrGLInterface* iface) {
23 SkASSERT(binding & iface->fBindingsExported);
24 return this->init(binding, iface->fGetString, iface->fGetStringi, iface->fGetIntegerv);
  /external/skia/include/gpu/gl/
GrGLExtensions.h 22 bool init(GrGLBinding binding, const GrGLInterface* iface) {
23 SkASSERT(binding & iface->fBindingsExported);
24 return this->init(binding, iface->fGetString, iface->fGetStringi, iface->fGetIntegerv);
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 55 InterfaceConfiguration getInterfaceConfig(String iface);
60 void setInterfaceConfig(String iface, in InterfaceConfiguration cfg);
65 void clearInterfaceAddresses(String iface);
70 void setInterfaceDown(String iface);
75 void setInterfaceUp(String iface);
80 void setInterfaceIpv6PrivacyExtensions(String iface, boolean enable);
85 void disableIpv6(String iface);
90 void enableIpv6(String iface);
96 RouteInfo[] getRoutes(String iface);
101 void addRoute(String iface, in RouteInfo route)
    [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
823 struct wpa_priv_interface *iface = ctx; local
886 struct wpa_priv_interface *iface = ctx; local
958 struct wpa_priv_interface *interfaces = NULL, *iface; local
    [all...]
main_none.c 16 struct wpa_interface iface; local
28 memset(&iface, 0, sizeof(iface));
31 if (wpa_supplicant_add_iface(global, &iface) == NULL)
  /external/libppp/src/
iface.h 26 * $FreeBSD: src/usr.sbin/ppp/iface.h,v 1.8.26.1 2010/12/21 17:10:29 kensmith Exp $
37 struct iface { struct
56 extern struct iface *iface_Create(const char *name);
57 extern void iface_Clear(struct iface *, struct ncp *, int, int);
58 extern int iface_Add(struct iface *, struct ncp *, const struct ncprange *,
60 extern int iface_Delete(struct iface *, struct ncp *, const struct ncpaddr *);
64 extern void iface_Destroy(struct iface *);
  /dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java 17 package com.android.dx.cf.iface;
  /device/generic/goldfish/opengl/system/egl/
ClientAPIExts.h 24 void initClientFuncs(const EGLClient_glesInterface *iface, int idx);
  /external/wpa_supplicant_8/hostapd/logwatch/
hostapd 29 if (my ($iface,$mac,$layer,$details) = ($line =~ /(.*?): STA (.*?) (.*?): (.*?)$/i)) {
34 $hostapd{$iface}->{$mac}->{$layer}->{$details}++;
41 foreach my $iface (sort keys %hostapd) {
42 print "Interface $iface:\n";
43 foreach my $mac (sort keys %{$hostapd{$iface}}) {
45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) {
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};

Completed in 2012 milliseconds

1 2 3 4 5 6 7 8 91011>>