Searched defs:interface (Results 1 - 25 of 186) sorted by relevance

12345678

/external/dbus/dbus/
H A Ddbus-sysdeps-win.h37 #undef interface macro
H A Ddbus-sockets-win.h38 #undef interface macro
/external/autotest/site_utils/
H A Dlxc_utils.py11 from autotest_lib.client.common_lib.cros.network import interface namespace
35 This function gets the IP address on network interface lxcbr*. The
36 assumption is that lxc uses the network interface started with "lxcbr".
51 raise error.ContainerError('Failed to find network interface used by '
54 netif = interface.Interface(lxc_network)
/external/google-tv-pairing-protocol/cpp/src/polo/wire/
H A Dpolowireadapter.cc22 PoloWireAdapter::PoloWireAdapter(PoloWireInterface* interface) argument
23 : interface_(interface) {
H A Dpolowireadapter.h30 // Creates a new adapter on the given interface. The interface should only
33 // @param interface the interface used to send and receive data
34 explicit PoloWireAdapter(PoloWireInterface* interface);
41 // Gets the next message from the interface asynchronously. The listener
79 // Gets the Polo wire interface used to send and receive data.
80 PoloWireInterface* interface() { return interface_; } function in class:polo::wire::PoloWireAdapter
/external/google-tv-pairing-protocol/cpp/tests/polo/wire/
H A Dmocks.h36 explicit MockWireAdapter(PoloWireInterface* interface) argument
37 : PoloWireAdapter(interface) {
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.h2 * hostapd / UNIX domain socket -based control interface
15 int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface);
16 void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface);
28 hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface) argument
34 hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface) argument
/external/autotest/client/site_tests/network_WlanDriver/
H A Dnetwork_WlanDriver.py10 from autotest_lib.client.common_lib.cros.network import interface namespace
79 net_if = interface.Interface(device)
/external/skia/src/gpu/gl/
H A DGrGLContext.cpp13 GrGLContext* GrGLContext::Create(const GrGLInterface* interface, const GrContextOptions& options) { argument
15 if (!interface->fFunctions.fGetString) {
19 args.fInterface = interface;
22 GR_GL_CALL_RET(interface, verUByte, GetString(GR_GL_VERSION));
26 GR_GL_CALL_RET(interface, rendererUByte, GetString(GR_GL_RENDERER));
29 if (!interface->validate()) {
38 if (!GrGLGetGLSLGeneration(interface, &args.fGLSLGeneration)) {
42 args.fVendor = GrGLGetVendor(interface);
58 GrGLGetDriverInfo(interface->fStandard, args.fVendor, renderer, ver,
/external/skia/src/gpu/vk/
H A DGrVkInterface.cpp17 GrVkInterface* interface = new GrVkInterface(); local
18 GrVkInterface::Functions* functions = &interface->fFunctions;
174 return interface;
/external/autotest/client/cros/netprotos/
H A Dinterface_host.py11 from autotest_lib.client.common_lib.cros.network import interface namespace
15 """A host for use with ZeroconfDaemon that binds to an interface."""
19 """Get the IP address of the interface we're bound to."""
24 self._interface = interface.Interface(interface_name)
35 """Get a socket bound to this interface.
74 """Broadcast UDP socket bound to a particular network interface."""
130 # interface. The easiest way to do this is bind a socket directly to
131 # the IP for the interface. We're going to ignore messages sent to this
/external/autotest/client/deps/glbench/src/
H A Dcontexttest.cc34 GLInterface* interface = g_main_gl_interface.get(); local
35 CHECK(interface);
36 GLContext main_context = interface->GetMainContext();
37 GLContext new_context = interface->CreateContext();
42 interface->MakeCurrent(new_context);
44 interface->MakeCurrent(main_context);
49 interface->MakeCurrent(IsEven(i) ? new_context : main_context);
52 interface->MakeCurrent(main_context);
53 interface->DeleteContext(new_context);
/external/autotest/client/site_tests/network_BasicProfileProperties/
H A Dnetwork_BasicProfileProperties.py9 from autotest_lib.client.common_lib.cros.network import interface namespace
63 ethernet_if = interface.Interface.get_connected_ethernet_interface()
/external/autotest/client/site_tests/network_DhcpBrokenDefaultGateway/
H A Dnetwork_DhcpBrokenDefaultGateway.py6 from autotest_lib.client.common_lib.cros.network import interface namespace
25 @param interface_name string client network interface name.
48 @param interface_name string client network interface name.
52 default_route = interface.get_prioritized_default_route(
/external/autotest/client/site_tests/network_DhcpFQDN/
H A Dnetwork_DhcpFQDN.py6 from autotest_lib.client.common_lib.cros.network import interface namespace
/external/autotest/client/site_tests/network_DhcpMTU/
H A Dnetwork_DhcpMTU.py7 from autotest_lib.client.common_lib.cros.network import interface namespace
21 """Test implemenation of MTU including confirming the interface state."""
24 """Check that the ipconfig and interface in the client has correct MTU.
45 interface_mtu = interface.Interface(
/external/autotest/client/site_tests/network_FirewallHolePunch/
H A Dnetwork_FirewallHolePunch.py11 from autotest_lib.client.common_lib.cros.network import interface namespace
90 ethernet = interface.Interface.get_connected_ethernet_interface()
/external/avahi/avahi-core/
H A Dannounce.h40 AvahiInterface *interface; member in struct:AvahiAnnouncer
H A Dbrowse.h39 AvahiIfIndex interface; member in struct:AvahiSRecordBrowser
/external/dbus-binding-generator/chromeos-dbus-bindings/
H A Dmethod_name_generator_unittest.cc15 #include "chromeos-dbus-bindings/interface.h"
56 Interface interface; local
57 interface.name = "MyInterface";
58 interface.methods.emplace_back(kMethodName0);
59 interface.methods.emplace_back(kMethodName1);
60 interface.methods.emplace_back(kMethodName2);
62 EXPECT_TRUE(MethodNameGenerator::GenerateMethodNames({interface},
/external/webrtc/webrtc/base/
H A Difaddrs_converter.cc20 const struct ifaddrs* interface,
23 switch (interface->ifa_addr->sa_family) {
26 reinterpret_cast<sockaddr_in*>(interface->ifa_addr)->sin_addr);
28 reinterpret_cast<sockaddr_in*>(interface->ifa_netmask)->sin_addr);
33 if (!ConvertNativeAttributesToIPAttributes(interface, &ip_attributes)) {
37 reinterpret_cast<sockaddr_in6*>(interface->ifa_addr)->sin6_addr,
40 reinterpret_cast<sockaddr_in6*>(interface->ifa_netmask)->sin6_addr);
48 const struct ifaddrs* interface,
19 ConvertIfAddrsToIPAddress( const struct ifaddrs* interface, InterfaceAddress* ip, IPAddress* mask) argument
47 ConvertNativeAttributesToIPAttributes( const struct ifaddrs* interface, int* ip_attributes) argument
/external/avahi/avahi-client/
H A Dsrv-test.c35 AVAHI_GCC_UNUSED AvahiIfIndex interface,
33 callback( AVAHI_GCC_UNUSED AvahiServiceResolver *r, AVAHI_GCC_UNUSED AvahiIfIndex interface, AVAHI_GCC_UNUSED AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, const char *host_name, AVAHI_GCC_UNUSED const AvahiAddress *a, AVAHI_GCC_UNUSED uint16_t port, AVAHI_GCC_UNUSED AvahiStringList *txt, AVAHI_GCC_UNUSED AvahiLookupResultFlags flags, AVAHI_GCC_UNUSED void *userdata) argument
/external/avahi/avahi-daemon/
H A Ddbus-domain-browser.c63 avahi_log_debug(__FILE__": interface=%s, path=%s, member=%s",
97 void avahi_dbus_domain_browser_callback(AvahiSDomainBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *domain, AvahiLookupResultFlags flags, void* userdata) { argument
106 i_interface = (int32_t) interface;
H A Ddbus-record-browser.c62 avahi_log_debug(__FILE__": interface=%s, path=%s, member=%s",
98 AvahiIfIndex interface,
113 i_interface = (int32_t) interface;
96 avahi_dbus_record_browser_callback( AvahiSRecordBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, AvahiRecord *record, AvahiLookupResultFlags flags, void* userdata) argument
H A Ddbus-service-browser.c63 avahi_log_debug(__FILE__": interface=%s, path=%s, member=%s",
97 void avahi_dbus_service_browser_callback(AvahiSServiceBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AvahiLookupResultFlags flags, void* userdata) { argument
116 if (avahi_dbus_is_our_own_service(i->client, interface, protocol, name, type, domain) > 0)
120 i_interface = (int32_t) interface;

Completed in 1237 milliseconds

12345678