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

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/darwin-x86/test/
reflectmethod4.go 26 reflect.ValueOf(v).Method(0).Interface().(func())()
  /prebuilts/go/linux-x86/src/encoding/gob/
enc_helpers.go 60 slice, ok := v.Interface().([]bool)
86 slice, ok := v.Interface().([]complex64)
111 slice, ok := v.Interface().([]complex128)
136 slice, ok := v.Interface().([]float32)
159 slice, ok := v.Interface().([]float64)
182 slice, ok := v.Interface().([]int)
204 slice, ok := v.Interface().([]int16)
226 slice, ok := v.Interface().([]int32)
248 slice, ok := v.Interface().([]int64)
270 slice, ok := v.Interface().([]int8
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug099.go 9 // Interface
10 type I interface { F() int }
12 // Implements interface
24 // Uses interface method.
issue22605.go 20 return m[a.Interface().([8]string)]
  /prebuilts/go/linux-x86/test/
recover.go 74 func mustRecoverBody(v1, v2, v3, x interface{}) {
98 func doubleRecover() interface{} {
102 func mustRecover(x interface{}) {
151 defer func(x interface{}) {
198 func try(g func(), deflt interface{}) (x interface{}) {
210 func try1(g func(), deflt interface{}) (x interface{}) {
345 type I interface {
363 f := reflect.ValueOf(&T1{}).Method(0).Interface().(func()
    [all...]
reflectmethod1.go 26 reflect.TypeOf(v).Method(0).Func.Interface().(func(M))(v)
reflectmethod4.go 26 reflect.ValueOf(v).Method(0).Interface().(func())()
  /system/tools/hidl/
Scope.h 32 struct Interface;
51 // Returns the single interface or NULL.
52 Interface *getInterface() const;
AST.h 39 struct Interface;
157 // Get transitive closure of imported interface/types. This will add
176 const Interface *getInterface() const;
178 // types or Interface base name (e.x. Foo)
202 // interface type or a whole package.
251 // a method, and in which interface is it originally defined.
252 // be careful of the case where method.isHidlReserved(), where interface
254 using MethodGenerator = std::function<void(const Method*, const Interface*)>;
267 const Method* method, const Interface* superInterface) const;
274 void generateStubSource(Formatter& out, const Interface* iface) const
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
thread_safe_interface_ptr.h 22 // Instances of this class may be used from any thread to serialize |Interface|
27 template <typename Interface>
30 using ProxyType = typename Interface::Proxy_;
38 // Any message sent through this forwarding interface will dispatch its reply,
39 // if any, back to the thread which called the corresponding interface method.
60 // - This is a non-associated interface pointer setup using
64 // - This is an associated interface which hasn't been associated with a
200 // endpoints on this interface (at least not immediately). In order to fix
202 // the interface pointer on the |task_runner_|. Therefore, MultiplexRouter
268 template <typename Interface>
    [all...]
  /system/bt/doc/
directory_layout.md 15 * btif - *Bluetooth Interface* - JNI interface to Android.
19 * hci - *Host Controller Interface* - Communication protocol with Bluetooth chip.
22 * osi - *Operating System Interface* - General resource support for stack.
  /prebuilts/go/darwin-x86/src/net/
interface_linux.go 15 // interface.
16 func interfaceTable(ifindex int) ([]Interface, error) {
25 var ift []Interface
58 func newLink(ifim *syscall.IfInfomsg, attrs []syscall.NetlinkRouteAttr) *Interface {
59 ifi := &Interface{Index: int(ifim.Index), Flags: linkFlags(ifim.Flags)}
64 // prefix on any IP tunnel interface as the
119 // interface.
120 func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
129 var ift []Interface
144 func addrTable(ift []Interface, ifi *Interface, msgs []syscall.NetlinkMessage) ([]Addr, error)
    [all...]
  /prebuilts/go/linux-x86/src/net/
interface_linux.go 15 // interface.
16 func interfaceTable(ifindex int) ([]Interface, error) {
25 var ift []Interface
58 func newLink(ifim *syscall.IfInfomsg, attrs []syscall.NetlinkRouteAttr) *Interface {
59 ifi := &Interface{Index: int(ifim.Index), Flags: linkFlags(ifim.Flags)}
64 // prefix on any IP tunnel interface as the
119 // interface.
120 func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
129 var ift []Interface
144 func addrTable(ift []Interface, ifi *Interface, msgs []syscall.NetlinkMessage) ([]Addr, error)
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/PlatformIntelBdsLib/
IntelBdsPlatform.c 168 OUT VOID* *Interface
209 // instance for the console interface.
210 if (!EFI_ERROR(Status) && (*Interface == NULL)) {
211 Status = gBS->HandleProtocol (*Handle, Protocol, Interface);
215 // No Device Path has been defined for this console interface. We take the first protocol implementation
216 if (*Interface == NULL) {
225 Status = gBS->HandleProtocol (*Handle, Protocol, Interface);
259 // create the 3 environment variables (ConIn, ConOut, ConErr) that allows to initialize all the console interface
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Interface.java 8 import org.chromium.mojo.bindings.Interface.AbstractProxy.HandlerImpl;
27 public interface Interface extends ConnectionErrorHandler, Closeable {
30 * The close method is called when the connection to the interface is closed.
38 * A proxy to a mojo interface. This is base class for all generated proxies. It implements the
39 * Interface and each time a method is called, the parameters are serialized and sent to the
42 public interface Proxy extends Interface {
46 public interface Handler extends Closeable {
59 * Returns the version number of the interface that the remote side supports
    [all...]
  /external/golang-protobuf/proto/
equal.go 112 b1, ok := f1.Interface().(raw)
114 b2 := f2.Interface().(raw)
130 if !equalExtensions(v1.Type(), em1.Interface().(XXX_InternalExtensions), em2.Interface().(XXX_InternalExtensions)) {
137 if !equalExtMap(v1.Type(), em1.Interface().(map[int32]Extension), em2.Interface().(map[int32]Extension)) {
160 m1, _ := v1.Interface().(Message)
161 m2, _ := v2.Interface().(Message)
171 case reflect.Interface:
218 return bytes.Equal(v1.Interface().([]byte), v2.Interface().([]byte)
    [all...]
  /prebuilts/go/darwin-x86/src/sort/
sort.go 11 // A type, typically a collection, that satisfies sort.Interface can be
14 type Interface interface {
25 func insertionSort(data Interface, a, b int) {
35 func siftDown(data Interface, lo, hi, first int) {
53 func heapSort(data Interface, a, b int) {
74 func medianOfThree(data Interface, m1, m0, m2 int) {
90 func swapRange(data Interface, a, b, n int) {
96 func doPivot(data Interface, lo, hi int) (midlo, midhi int) {
183 func quickSort(data Interface, a, b, maxDepth int)
    [all...]
  /prebuilts/go/linux-x86/src/sort/
sort.go 11 // A type, typically a collection, that satisfies sort.Interface can be
14 type Interface interface {
25 func insertionSort(data Interface, a, b int) {
35 func siftDown(data Interface, lo, hi, first int) {
53 func heapSort(data Interface, a, b int) {
74 func medianOfThree(data Interface, m1, m0, m2 int) {
90 func swapRange(data Interface, a, b, n int) {
96 func doPivot(data Interface, lo, hi int) (midlo, midhi int) {
183 func quickSort(data Interface, a, b, maxDepth int)
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
all_test.go 30 var sink interface{}
48 i interface{}
166 x (interface {
171 "interface { reflect_test.a(func(func(int) int) func(func(int)) int); reflect_test.b() }",
536 E interface{}
541 assert(t, v2.Type().String(), "interface {}")
542 i2 := v2.Interface()
549 E interface{}
554 assert(t, v2.Type().String(), "interface {}")
558 i3 := v2.Interface()
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
all_test.go 30 var sink interface{}
48 i interface{}
166 x (interface {
171 "interface { reflect_test.a(func(func(int) int) func(func(int)) int); reflect_test.b() }",
536 E interface{}
541 assert(t, v2.Type().String(), "interface {}")
542 i2 := v2.Interface()
549 E interface{}
554 assert(t, v2.Type().String(), "interface {}")
558 i3 := v2.Interface()
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Notify.c 49 @param Interface The interface of the protocol
58 IN VOID *Interface
68 Prot = CoreFindProtocolInterface (Handle, Protocol, Interface);
85 // Remove the protocol interface entry
170 Reinstall a protocol interface on a device handle. The OldInterface for Protocol is replaced by the NewInterface.
172 @param UserHandle Handle on which the interface is to be
174 @param Protocol The numeric ID of the interface
175 @param OldInterface A pointer to the old interface
176 @param NewInterface A pointer to the new interface
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Dependency.c 25 /// Driver Execution Environment Core Interface use 0xff
183 VOID *Interface;
249 Status = SmmLocateProtocol (&DriverGuid, NULL, &Interface);
254 Status = gBS->LocateProtocol (&DriverGuid, NULL, &Interface);
Notify.c 20 @param Prot Protocol interface
35 ProtNotify->Function (&ProtEntry->ProtocolID, Prot->Interface, Prot->Handle);
44 @param Interface The interface of the protocol
53 IN VOID *Interface
61 Prot = SmmFindProtocolInterface (Handle, Protocol, Interface);
78 // Remove the protocol interface entry
  /external/guice/core/test/com/google/inject/
RequireAtInjectOnConstructorsTest.java 71 bind(Interface.class).to(NoCxtors.class);
194 private static interface Interface {}
195 private static class NoCxtors implements Interface {}
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new.py 13 WPAS_DBUS_INTERFACES_INTERFACE = "fi.w1.wpa_supplicant1.Interface"
42 net = dbus.Interface(net_obj, WPAS_DBUS_BSS_INTERFACE)
106 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
122 # See if wpa_supplicant already knows about this interface
140 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)

Completed in 526 milliseconds

1 2 3 4 5 6 78 91011>>