HomeSort by relevance Sort by last modified time
    Searched refs:Interface (Results 126 - 150 of 960) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/bindings/ocaml/linker/
llvm_linker.ml 1 (*===-- llvm_linker.ml - LLVM OCaml Interface ------------------*- OCaml -*-===*
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitreader/
llvm_bitreader.ml 1 (*===-- llvm_bitreader.ml - LLVM Ocaml Interface ----------------*- C++ -*-===*
  /external/wpa_supplicant_8/wpa_supplicant/examples/
dbus-listen-preq.py 12 WPAS_DBUS_INTERFACES_INTERFACE = "fi.w1.wpa_supplicant1.Interface"
47 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
54 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
wpas-test.py 11 WPAS_DBUS_INTERFACES_INTERFACE = "fi.epitest.hostap.WPASupplicant.Interface"
27 print "Usage: wpas-test.py <interface>"
34 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
36 # See if wpa_supplicant already knows about this interface
41 if str(exc) != "wpa_supplicant knows nothing about this interface.":
46 if str(exc) != "wpa_supplicant already controls this interface.":
50 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
59 net = dbus.Interface(net_obj, WPAS_DBUS_BSSID_INTERFACE)
86 # Should fail here with unknown interface error
  /hardware/interfaces/graphics/allocator/2.0/utils/hal/include/allocator-hal/2.0/
Allocator.h 43 template <typename Interface, typename Hal>
44 class AllocatorImpl : public Interface {
51 // IAllocator 2.0 interface
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
rewrite.go 51 ast.Print(fileSet, val.Interface())
74 val = subst(m, repl, reflect.ValueOf(val.Interface().(ast.Node).Pos()))
79 r := apply(rewriteVal, reflect.ValueOf(p)).Interface().(*ast.File)
145 case reflect.Interface:
165 name := pattern.Interface().(*ast.Ident).Name
168 if _, ok := val.Interface().(ast.Expr); ok && !val.IsNil() {
193 p := pattern.Interface().(*ast.Ident)
194 v := val.Interface().(*ast.Ident)
203 p := pattern.Interface().(*ast.CallExpr)
204 v := val.Interface().(*ast.CallExpr
    [all...]
  /prebuilts/go/darwin-x86/src/net/
sockoptip_posix.go 14 func joinIPv4Group(fd *netFD, ifi *Interface, ip IP) error {
24 func setIPv6MulticastInterface(fd *netFD, ifi *Interface) error {
40 func joinIPv6Group(fd *netFD, ifi *Interface, ip IP) error {
44 mreq.Interface = uint32(ifi.Index)
interface_solaris.go 15 // interface.
16 func interfaceTable(ifindex int) ([]Interface, error) {
21 var ift []Interface
26 ifi := Interface{Index: ll.Index, MTU: ll.MTU, Name: ll.Name, Flags: linkFlags(ll.Flags)}
75 // interface.
76 func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
104 // interface.
105 func interfaceMulticastAddrTable(ifi *Interface) ([]Addr, error) {
sockopt_posix.go 22 func ipv4AddrToInterface(ip IP) (*Interface, error) {
51 func interfaceToIPv4Addr(ifi *Interface) (IP, error) {
74 func setIPv4MreqToInterface(mreq *syscall.IPMreq, ifi *Interface) error {
86 copy(mreq.Interface[:], a)
91 copy(mreq.Interface[:], a)
interface_plan9.go 14 // interface.
15 func interfaceTable(ifindex int) ([]Interface, error) {
21 ifcs := make([]Interface, n)
36 return []Interface{*ifc}, nil
39 func readInterface(i int) (*Interface, error) {
40 ifc := &Interface{
42 Name: netdir + "/ipifc/" + itoa(i), // Name is the full path to the interface path in plan9
54 return nil, errors.New("invalid interface status file: " + ifcstat)
59 return nil, errors.New("invalid interface status file: " + ifcstat)
67 return nil, errors.New("invalid status file of interface: " + ifcstat
    [all...]
interface.go 14 // Interface are not implemented.
17 // the MulticastAddrs method of Interface is not implemented.
20 errInvalidInterface = errors.New("invalid network interface")
21 errInvalidInterfaceIndex = errors.New("invalid network interface index")
22 errInvalidInterfaceName = errors.New("invalid network interface name")
23 errNoSuchInterface = errors.New("no such network interface")
24 errNoSuchMulticastInterface = errors.New("no such multicast network interface")
27 // Interface represents a mapping between network interface name
28 // and index. It also represents network interface facilit
    [all...]
  /prebuilts/go/linux-x86/src/cmd/gofmt/
rewrite.go 51 ast.Print(fileSet, val.Interface())
74 val = subst(m, repl, reflect.ValueOf(val.Interface().(ast.Node).Pos()))
79 r := apply(rewriteVal, reflect.ValueOf(p)).Interface().(*ast.File)
145 case reflect.Interface:
165 name := pattern.Interface().(*ast.Ident).Name
168 if _, ok := val.Interface().(ast.Expr); ok && !val.IsNil() {
193 p := pattern.Interface().(*ast.Ident)
194 v := val.Interface().(*ast.Ident)
203 p := pattern.Interface().(*ast.CallExpr)
204 v := val.Interface().(*ast.CallExpr
    [all...]
  /prebuilts/go/linux-x86/src/net/
sockoptip_posix.go 14 func joinIPv4Group(fd *netFD, ifi *Interface, ip IP) error {
24 func setIPv6MulticastInterface(fd *netFD, ifi *Interface) error {
40 func joinIPv6Group(fd *netFD, ifi *Interface, ip IP) error {
44 mreq.Interface = uint32(ifi.Index)
interface_solaris.go 15 // interface.
16 func interfaceTable(ifindex int) ([]Interface, error) {
21 var ift []Interface
26 ifi := Interface{Index: ll.Index, MTU: ll.MTU, Name: ll.Name, Flags: linkFlags(ll.Flags)}
75 // interface.
76 func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
104 // interface.
105 func interfaceMulticastAddrTable(ifi *Interface) ([]Addr, error) {
sockopt_posix.go 22 func ipv4AddrToInterface(ip IP) (*Interface, error) {
51 func interfaceToIPv4Addr(ifi *Interface) (IP, error) {
74 func setIPv4MreqToInterface(mreq *syscall.IPMreq, ifi *Interface) error {
86 copy(mreq.Interface[:], a)
91 copy(mreq.Interface[:], a)
interface_plan9.go 14 // interface.
15 func interfaceTable(ifindex int) ([]Interface, error) {
21 ifcs := make([]Interface, n)
36 return []Interface{*ifc}, nil
39 func readInterface(i int) (*Interface, error) {
40 ifc := &Interface{
42 Name: netdir + "/ipifc/" + itoa(i), // Name is the full path to the interface path in plan9
54 return nil, errors.New("invalid interface status file: " + ifcstat)
59 return nil, errors.New("invalid interface status file: " + ifcstat)
67 return nil, errors.New("invalid status file of interface: " + ifcstat
    [all...]
interface.go 14 // Interface are not implemented.
17 // the MulticastAddrs method of Interface is not implemented.
20 errInvalidInterface = errors.New("invalid network interface")
21 errInvalidInterfaceIndex = errors.New("invalid network interface index")
22 errInvalidInterfaceName = errors.New("invalid network interface name")
23 errNoSuchInterface = errors.New("no such network interface")
24 errNoSuchMulticastInterface = errors.New("no such multicast network interface")
27 // Interface represents a mapping between network interface name
28 // and index. It also represents network interface facilit
    [all...]
  /system/bt/include/hardware/
bluetooth_headset_interface.h 26 * Programming interface for Headset profiles in the Fluoride stack
29 class Interface {
31 virtual ~Interface() = default;
208 * Closes the interface.
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Handle.c 166 @param Interface The interface for the protocol being searched
175 IN VOID *Interface
193 // Look at each protocol interface for any matches
198 // If this protocol interface matches, remove it
201 if (Prot->Interface == Interface && Prot->Protocol == ProtEntry) {
295 @param InterfaceType Indicates whether Interface is supplied in
297 @param Interface The interface for the protocol being added
    [all...]
  /external/autotest/client/cros/cellular/
modem.py 79 return dbus.Interface(obj, Modem.MODEM_INTERFACE)
83 return dbus.Interface(obj, Modem.SIMPLE_MODEM_INTERFACE)
87 return dbus.Interface(obj, Modem.CDMA_MODEM_INTERFACE)
91 return dbus.Interface(obj, Modem.GOBI_MODEM_INTERFACE)
95 return dbus.Interface(obj, Modem.GSM_MODEM_INTERFACE)
99 return dbus.Interface(obj, Modem.GSM_CARD_INTERFACE)
103 return dbus.Interface(obj, Modem.GSM_SMS_INTERFACE)
107 return dbus.Interface(obj, Modem.GSM_NETWORK_INTERFACE)
111 obj_iface = dbus.Interface(obj, Modem.PROPERTIES_INTERFACE)
155 # Operator information is not exposed through the properties interface
    [all...]
modem1.py 53 return dbus.Interface(obj, mm1.MODEM_INTERFACE)
57 return dbus.Interface(obj, mm1.MODEM_SIMPLE_INTERFACE)
61 return dbus.Interface(obj, mm1.MODEM_MODEM3GPP_INTERFACE)
65 return dbus.Interface(obj, mm1.MODEM_MODEMCDMA_INTERFACE)
69 return dbus.Interface(obj, mm1.SIM_INTERFACE)
73 return dbus.Interface(obj, dbus.PROPERTIES_IFACE)
110 sim_props_iface = dbus.Interface(sim_obj, dbus.PROPERTIES_IFACE)
117 # property obtained from the Modem3gpp interface.
249 self.manager = dbus.Interface(
252 self.objectmanager = dbus.Interface(
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
interface2.go 50 y := v.Interface().(float64) // y will have type float64.
54 fmt.Println(v.Interface())
57 fmt.Printf("value is %7.1e\n", v.Interface())
100 fmt.Println(v.Interface())
117 typeOfT.Field(i).Name, f.Type(), f.Interface())
  /prebuilts/go/linux-x86/doc/progs/
interface2.go 50 y := v.Interface().(float64) // y will have type float64.
54 fmt.Println(v.Interface())
57 fmt.Printf("value is %7.1e\n", v.Interface())
100 fmt.Println(v.Interface())
117 typeOfT.Field(i).Name, f.Type(), f.Interface())
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
TransitiveDependencyVisitorTest.java 86 Binding<?> binding = getBinding(Key.get(Interface.class), new HasDependenciesModule());
96 Binding<?> binding = getBinding(Key.get(Interface.class), new LinkedKeyModule());
99 // Dependency should be to the class this interface is bound to.
150 private static interface Interface {}
152 private static class ConstructedClass implements Interface {
170 private static class HasDependenciesClass implements Interface, HasDependencies {
196 bind(Interface.class).to(ConstructedClass.class);
210 bind(Interface.class).toInstance(new HasDependenciesClass());
  /system/tools/hidl/
generateCpp.cpp 22 #include "Interface.h"
208 const Interface *iface = getInterface();
248 const Interface *superType = iface->superType();
317 for (const Interface *superType : iface->typeChain()) {
352 const Interface *iface = getInterface();
402 const Interface &iface = static_cast<const Interface &>(arg->type());
453 << "\"Cannot wrap passthrough interface.\");\n";
507 << "\"Cannot wrap passthrough interface.\");\n";
549 const Interface* iface = mRootScope.getInterface()
    [all...]

Completed in 923 milliseconds

1 2 3 4 56 7 8 91011>>