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

1 2 3 4 5 67 8 91011>>

  /external/libvpx/libvpx/vpx/src/
vpx_encoder.c 28 vpx_codec_iface_t *iface,
36 else if (!ctx || !iface || !cfg)
38 else if (iface->abi_version != VPX_CODEC_INTERNAL_ABI_VERSION)
40 else if (!(iface->caps & VPX_CODEC_CAP_ENCODER))
43 && !(iface->caps & VPX_CODEC_CAP_PSNR))
46 && !(iface->caps & VPX_CODEC_CAP_OUTPUT_PARTITION))
49 ctx->iface = iface;
50 ctx->name = iface->name;
54 res = ctx->iface->init(ctx, NULL)
    [all...]
  /art/test/972-default-imt-collision/src/
Main.java 23 Class<?> iface = Class.forName("Iface2"); local
24 Method test = c.getMethod("testMe", iface);
  /external/avahi/tests/
fuzz-mdns.py 6 sendp(Ether(type=0x800, dst="ff:ff:ff:ff:ff:ff")/IP(dst="224.0.0.251")/fuzz(UDP(dport = 5353, sport = 5353)/DNS(qd = fuzz(DNSQR()))),loop=1, iface="realtek0")
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseTryBlock.java 34 import org.jf.dexlib2.iface.ExceptionHandler;
35 import org.jf.dexlib2.iface.TryBlock;
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/iface/
AnnotationElement.java 32 package org.jf.dexlib2.iface;
34 import org.jf.dexlib2.iface.value.EncodedValue;
ExceptionHandler.java 32 package org.jf.dexlib2.iface;
34 import org.jf.dexlib2.iface.reference.TypeReference;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
EnumEncodedValue.java 32 package org.jf.dexlib2.iface.value;
34 import org.jf.dexlib2.iface.reference.FieldReference;
FieldEncodedValue.java 32 package org.jf.dexlib2.iface.value;
34 import org.jf.dexlib2.iface.reference.FieldReference;
MethodEncodedValue.java 32 package org.jf.dexlib2.iface.value;
34 import org.jf.dexlib2.iface.reference.MethodReference;
  /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...]
  /hardware/libhardware_legacy/include/hardware_legacy/
wifi_hal.h 140 wifi_error wifi_get_iface_name(wifi_interface_handle iface, char *name, size_t size);
154 wifi_error wifi_set_iface_event_handler(wifi_request_id id, wifi_interface_handle iface, wifi_event_handler eh);
155 wifi_error wifi_reset_iface_event_handler(wifi_request_id id, wifi_interface_handle iface);
257 wifi_error (* wifi_rtt_get_responder_info)(wifi_interface_handle iface,
259 wifi_error (* wifi_enable_responder)(wifi_request_id id, wifi_interface_handle iface,
262 wifi_error (* wifi_disable_responder)(wifi_request_id id, wifi_interface_handle iface);
269 wifi_error (* wifi_get_firmware_memory_dump)( wifi_interface_handle iface,
271 wifi_error (* wifi_set_log_handler)(wifi_request_id id, wifi_interface_handle iface,
273 wifi_error (* wifi_reset_log_handler)(wifi_request_id id, wifi_interface_handle iface);
274 wifi_error (* wifi_set_alert_handler)(wifi_request_id id, wifi_interface_handle iface,
    [all...]
  /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;
MethodImplementationRewriter.java 34 import org.jf.dexlib2.iface.ExceptionHandler;
35 import org.jf.dexlib2.iface.MethodImplementation;
36 import org.jf.dexlib2.iface.TryBlock;
37 import org.jf.dexlib2.iface.debug.DebugItem;
38 import org.jf.dexlib2.iface.instruction.Instruction;
  /system/netd/server/
NetlinkHandler.cpp 63 const char *iface = evt->findParam("INTERFACE"); local
66 notifyInterfaceAdded(iface);
68 notifyInterfaceRemoved(iface);
73 notifyInterfaceLinkChanged(iface, true);
75 notifyInterfaceLinkChanged(iface, false);
81 if (action == NetlinkEvent::Action::kAddressRemoved && iface && address) {
82 // Note: if this interface was deleted, iface is "" and we don't notify.
100 if (iface && iface[0] && address && flags && scope) {
101 notifyAddressChanged(action, address, iface, flags, scope)
113 const char *iface = evt->findParam("INTERFACE"); local
121 const char *iface = evt->findParam("INTERFACE"); local
    [all...]
  /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...]
  /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...]
  /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/wpa_supplicant_8/wpa_supplicant/
main.c 184 struct wpa_interface *ifaces, *iface; local
195 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
209 iface->bridge_ifname = optarg;
215 iface->confname = optarg;
218 iface->ctrl_interface = optarg;
221 iface->driver = optarg;
252 iface->ifname = optarg;
255 iface->confanother = optarg;
276 iface->driver_param = optarg;
313 iface = os_realloc_array(params.match_ifaces
    [all...]
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/java/android/net/
TrafficStats.java 354 for (String iface : getMobileIfaces()) {
355 total += getTxPackets(iface);
371 for (String iface : getMobileIfaces()) {
372 total += getRxPackets(iface);
388 for (String iface : getMobileIfaces()) {
389 total += getTxBytes(iface);
405 for (String iface : getMobileIfaces()) {
406 total += getRxBytes(iface);
414 for (String iface : getMobileIfaces()) {
415 final long stat = nativeGetIfaceStat(iface, TYPE_TCP_RX_PACKETS)
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
MockWifiMonitor.java 58 public void answer(String iface, int what, Handler handler) {
59 SparseArray<Handler> ifaceHandlers = mHandlerMap.get(iface);
62 mHandlerMap.put(iface, ifaceHandlers);
71 public void sendMessage(String iface, int what) {
72 sendMessage(iface, Message.obtain(null, what));
74 public void sendMessage(String iface, Message message) {
75 SparseArray<Handler> ifaceHandlers = mHandlerMap.get(iface);
77 assertTrue("No handler for iface=" + iface + ",what=" + message.what,
86 assertTrue("No handler for message with nonexistant iface, iface=" + ifac
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItemFactory.java 33 import org.jf.dexlib2.iface.instruction.Instruction;
34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
35 import org.jf.dexlib2.iface.instruction.formats.ArrayPayload;
36 import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload;
37 import org.jf.dexlib2.iface.instruction.formats.SparseSwitchPayload;
  /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);
  /external/deqp/scripts/opengl/
gen_null_render_context.py 75 def genNullRenderContext (iface):
76 genCommandList(iface, commandInitStatement,
80 genCommandList(iface, commandDummyImpl,

Completed in 3342 milliseconds

1 2 3 4 5 67 8 91011>>