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

1 2 34 5 6 7 8 91011>>

  /hardware/libhardware_legacy/include/hardware_legacy/
wifi_config.h 20 wifi_interface_handle iface, int extended_dtim);
23 wifi_error wifi_set_country_code(wifi_interface_handle iface, const char* country_code);
32 wifi_error wifi_set_beacon_wifi_iface_stats_averaging_factor(wifi_request_id id, wifi_interface_handle iface,
38 wifi_error wifi_set_guard_time(wifi_request_id id, wifi_interface_handle iface,
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
ConstructorDelegate.java 33 public Object newInstance(String declaring, String iface);
39 public static ConstructorDelegate create(Class targetClass, Class iface) {
42 gen.setInterface(iface);
51 private Class iface; field in class:ConstructorDelegate.Generator
58 public void setInterface(Class iface) {
59 this.iface = iface;
68 Object key = KEY_FACTORY.newInstance(iface.getName(), targetClass.getName());
79 final Method newInstance = ReflectUtils.findNewInstance(iface);
95 new Type[]{ Type.getType(iface) },
    [all...]
  /art/test/969-iface-super/src/
classes.xml 21 <item>Iface</item>
35 <item>Iface</item>
78 <interface name="Iface" super="java/lang/Object">
87 <item>Iface</item>
94 <item>Iface</item>
C.java 16 public class C implements Iface {
18 return Iface.super.SayHi() + " and welcome ";
  /external/wpa_supplicant_8/wpa_supplicant/
main_winmain.c 25 struct wpa_interface *ifaces, *iface; local
38 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
43 iface->confname = "default";
44 iface->driver = "ndis";
45 iface->ifname = "";
  /frameworks/base/core/tests/coretests/src/android/net/
StaticIpConfigurationTest.java 43 private static final String IFACE = "eth0";
149 expected.setInterfaceName(IFACE);
152 assertEquals(expected, s.toLinkProperties(IFACE));
154 final RouteInfo connectedRoute = new RouteInfo(new IpPrefix(ADDRSTR), null, IFACE);
158 assertEquals(expected, s.toLinkProperties(IFACE));
161 RouteInfo defaultRoute = new RouteInfo(new IpPrefix("0.0.0.0/0"), GATEWAY, IFACE);
163 assertEquals(expected, s.toLinkProperties(IFACE));
167 defaultRoute = new RouteInfo(new IpPrefix("0.0.0.0/0"), OFFLINKGATEWAY, IFACE);
170 RouteInfo gatewayRoute = new RouteInfo(new IpPrefix("192.0.2.129/32"), null, IFACE);
172 assertEquals(expected, s.toLinkProperties(IFACE));
    [all...]
  /external/wpa_supplicant_8/hostapd/
main.c 95 hapd->conf->iface, MAC2STR(addr),
100 hapd->conf->iface, module_str ? " " : "",
149 static int hostapd_driver_init(struct hostapd_iface *iface)
153 struct hostapd_data *hapd = iface->bss[0];
175 wpa_drivers[i]->global_init(iface->interfaces);
188 params.ifname = hapd->conf->iface;
192 params.num_bridge = hapd->iface->num_bss;
193 params.bridge = os_calloc(hapd->iface->num_bss, sizeof(char *));
196 for (i = 0; i < hapd->iface->num_bss; i++) {
197 struct hostapd_data *bss = hapd->iface->bss[i]
248 struct hostapd_iface *iface; local
739 struct hostapd_iface *iface; local
    [all...]
  /external/avahi/avahi-sharp/
DomainBrowser.cs 27 internal delegate void DomainBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
68 private int iface; field in class:Avahi.DomainBrowser
79 private static extern IntPtr avahi_domain_browser_new (IntPtr client, int iface, int proto,
120 public DomainBrowser (Client client, int iface, Protocol proto, string domain,
124 this.iface = iface;
149 handle = avahi_domain_browser_new (client.Handle, iface, (int) proto,
169 private void OnDomainBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
174 info.NetworkInterface = iface;
ServiceTypeBrowser.cs 27 internal delegate void ServiceTypeBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
62 private int iface; field in class:Avahi.ServiceTypeBrowser
72 private static extern IntPtr avahi_service_type_browser_new (IntPtr client, int iface, int proto,
118 public ServiceTypeBrowser (Client client, int iface, Protocol proto, string domain, LookupFlags flags)
121 this.iface = iface;
145 handle = avahi_service_type_browser_new (client.Handle, iface, (int) proto,
166 private void OnServiceTypeBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
172 info.NetworkInterface = iface;
  /external/selinux/libsemanage/src/
interfaces_file.c 23 semanage_iface_t * iface, FILE * str)
28 const char *name = semanage_iface_get_name(iface);
29 semanage_context_t *ifcon = semanage_iface_get_ifcon(iface);
30 semanage_context_t *msgcon = semanage_iface_get_msgcon(iface);
58 parse_info_t * info, semanage_iface_t * iface)
78 if (semanage_iface_set_name(handle, iface, str) < 0)
102 if (semanage_iface_set_ifcon(handle, iface, con) < 0)
126 if (semanage_iface_set_msgcon(handle, iface, con) < 0)
148 /* IFACE RECORD: FILE extension: method table */
  /frameworks/base/media/java/android/media/
RemoteDisplay.java 44 private native long nativeListen(String iface, String opPackageName);
67 * @param iface The interface address and port in the form "x.x.x.x:y".
71 public static RemoteDisplay listen(String iface, Listener listener, Handler handler,
73 if (iface == null) {
74 throw new IllegalArgumentException("iface must not be null");
84 display.startListening(iface);
118 private void startListening(String iface) {
119 mPtr = nativeListen(iface, mOpPackageName);
122 + "remote display connection on \"" + iface + "\"");
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliImplementsExtendsTest.java 46 myFixture.addFileToProject("my/pkg/iface.smali",
47 ".class public Lmy/pkg/iface; .super Ljava/lang/Object;");
52 ".class public Lmy/pkg/blah; .implements Lmy/pkg/iface; .super Lmy/pkg/base; " +
70 Assert.assertEquals("my.pkg.iface", implementsList.getReferencedTypes()[0].getCanonicalText());
73 Assert.assertEquals("my.pkg.iface", implementsList.getReferenceNames()[0]);
76 Assert.assertEquals("my.pkg.iface", smaliClass.getImplementsListTypes()[0].getCanonicalText());
81 Assert.assertEquals("my.pkg.iface", resolvedInterface.getQualifiedName());
89 myFixture.addFileToProject("my/pkg/iface.smali",
90 ".class public Lmy/pkg/iface; .super Ljava/lang/Object;");
95 ".class public interface Lmy/pkg/blah; .implements Lmy/pkg/iface; .super Ljava/lang/Object; "
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseMethodParameter.java 36 import org.jf.dexlib2.iface.Annotation;
37 import org.jf.dexlib2.iface.AnnotationElement;
38 import org.jf.dexlib2.iface.MethodParameter;
39 import org.jf.dexlib2.iface.value.ArrayEncodedValue;
40 import org.jf.dexlib2.iface.value.EncodedValue;
41 import org.jf.dexlib2.iface.value.StringEncodedValue;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
Rewriters.java 34 import org.jf.dexlib2.iface.*;
35 import org.jf.dexlib2.iface.debug.DebugItem;
36 import org.jf.dexlib2.iface.instruction.Instruction;
37 import org.jf.dexlib2.iface.reference.FieldReference;
38 import org.jf.dexlib2.iface.reference.MethodReference;
39 import org.jf.dexlib2.iface.value.EncodedValue;
  /external/toybox/toys/pending/
ping.c 24 -I IFACE/IP Source interface or address
40 char *iface;
75 if (TT.iface) {
79 if (!inet_pton(family, TT.iface, &src_addr)) {
86 if (!strcmp(ifa->ifa_name, TT.iface)) {
100 error_exit("no v%d addr for -I %s", 4+2*(family==AF_INET6), TT.iface);
  /frameworks/native/libs/binder/
IInterface.cpp 33 sp<IBinder> IInterface::asBinder(const IInterface* iface)
35 if (iface == NULL) return NULL;
36 return const_cast<IInterface*>(iface)->onAsBinder();
40 sp<IBinder> IInterface::asBinder(const sp<IInterface>& iface)
42 if (iface == NULL) return NULL;
43 return iface->onAsBinder();
  /external/wpa_supplicant_8/src/ap/
drv_callbacks.c 140 (hapd->iface->conf->ht_capab &
148 ht40_intolerant_add(hapd->iface, sta);
171 if (hapd->iface->fst)
485 hapd->iface->freq = freq;
513 switch (hapd->iface->current_mode->mode) {
544 } else if (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) {
581 if (!hapd->iface->current_mode) {
582 for (i = 0; i < hapd->iface->num_hw_features; i++) {
584 &hapd->iface->hw_features[i];
587 hapd->iface->current_mode = mode
845 struct hostapd_iface *iface = hapd->iface; local
955 struct hostapd_iface *iface = hapd->iface; local
    [all...]
beacon.c 73 *eid++ = hapd->iface->channel_utilization;
85 if (hapd->iface->current_mode == NULL ||
86 hapd->iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G)
89 if (hapd->iface->olbc)
91 if (hapd->iface->num_sta_non_erp > 0) {
95 if (hapd->iface->num_sta_no_short_preamble > 0 ||
114 if (hapd->iface->current_mode == NULL ||
115 hapd->iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G)
142 if (hapd->iface->current_mode == NULL ||
143 hapd->iface->current_mode->mode != HOSTAPD_MODE_IEEE80211A
1249 struct hostapd_iface *iface = hapd->iface; local
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStats.java 47 /** {@link #iface} value when interface details unavailable. */
87 private String[] iface; field in class:NetworkStats
99 public String iface; field in class:NetworkStats.Entry
124 public Entry(String iface, int uid, int set, int tag, long rxBytes, long rxPackets,
126 this(iface, uid, set, tag, ROAMING_NO, rxBytes, rxPackets, txBytes, txPackets,
130 public Entry(String iface, int uid, int set, int tag, int roaming, long rxBytes,
132 this.iface = iface;
164 builder.append("iface=").append(iface);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/binder/
supplicant.cpp 38 * Try to get the wpa_supplicant record for this iface, return
49 struct wpa_interface iface; local
51 os_memset(&iface, 0, sizeof(iface));
52 iface.driver = os_strdup(android::String8(driver).string());
53 iface.ifname = os_strdup(android::String8(ifname).string());
54 iface.confname = os_strdup(android::String8(confname).string());
55 iface.bridge_ifname = os_strdup(
58 wpa_s = wpa_supplicant_add_iface(wpa_global_, &iface, NULL);
77 os_free((void *) iface.driver)
    [all...]
  /prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar 
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiMonitor.java 552 public synchronized void registerHandler(String iface, int what, Handler handler) {
553 SparseArray<Set<Handler>> ifaceHandlers = mHandlerMap.get(iface);
556 mHandlerMap.put(iface, ifaceHandlers);
567 private boolean isMonitoring(String iface) {
568 Boolean val = mMonitoringMap.get(iface);
577 private void setMonitoring(String iface, boolean enabled) {
578 mMonitoringMap.put(iface, enabled);
581 for (String iface : mMonitoringMap.keySet()) {
582 setMonitoring(iface, false);
611 public synchronized void startMonitoring(String iface) {
760 String iface; local
    [all...]
  /art/test/026-access/src/
Iface2.java 20 public interface Iface2 extends Iface {
21 public final static int Y = Iface.X + 1;
  /art/test/966-default-conflict/src/
Iface2.java 17 // We extend Iface so that javac will not complain that Iface2 does not declare a sayHi method or
19 public interface Iface2 extends Iface {
  /external/autotest/client/site_tests/platform_DebugDaemonGetModemStatus/
platform_DebugDaemonGetModemStatus.py 17 self.iface = dbus.Interface(proxy,
19 result = self.iface.GetModemStatus()

Completed in 999 milliseconds

1 2 34 5 6 7 8 91011>>