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

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
dumper.go 92 func (p *dumper) printf(format string, args ...interface{}) {
107 case reflect.Interface:
121 if x, ok := x.Interface().(*Name); ok {
130 if ptr, ok := x.Interface().(Node); ok {
161 // if span, ok := x.Interface().(lexical.Span); ok {
199 switch x := x.Interface().(type) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
dumper.go 92 func (p *dumper) printf(format string, args ...interface{}) {
107 case reflect.Interface:
121 if x, ok := x.Interface().(*Name); ok {
130 if ptr, ok := x.Interface().(Node); ok {
161 // if span, ok := x.Interface().(lexical.Span); ok {
199 switch x := x.Interface().(type) {
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Nd.h 113 IP6_INTERFACE *Interface;
133 IP6_INTERFACE *Interface;
296 @param[out] Interface If not NULL, output the IP6 interface that configures
307 OUT IP6_INTERFACE **Interface OPTIONAL
613 @param[in] Interface If not NULL, points to the IP6 interface to send
628 IN IP6_INTERFACE *Interface OPTIONAL,
662 Set the interface's address. This will trigger the DAD process for the
666 @param[in] Interface The interface to set the address.
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/
DxeQNCSmbus.c 21 // Interface defintion of SMBUS Host Controller Protocol.
216 DeviceMap->SmbusDeviceUdid.Interface = (UINT16)((Buffer[6] << 8) + Buffer[7]);
245 Buffer[6] = (UINT8)(DeviceMap->SmbusDeviceUdid.Interface >> 8);
246 Buffer[7] = (UINT8)(DeviceMap->SmbusDeviceUdid.Interface);
380 CurrentDeviceMap->SmbusDeviceUdid.Interface = SmbusUdid->Interface;
607 // Install SMBus Host Controller protocol interface.
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Encoder.java 7 import org.chromium.mojo.bindings.Interface.Proxy.Handler;
264 * Encode an {@link Interface}.
266 public <T extends Interface> void encode(T v, int offset, boolean nullable,
267 Interface.Manager<T, ?> manager) {
275 "The encoder has been created without a Core. It can't encode an interface.");
278 if (v instanceof Interface.Proxy) {
279 Handler handler = ((Interface.Proxy) v).getProxyHandler();
294 public <I extends Interface> void encode(InterfaceRequest<I> v, int offset, boolean nullable) {
301 "The encoder has been created without a Core. It can't encode an interface.");
307 * Encode an associated interface. Not yet supported
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
type.go 10 // All types implement the Type interface.
11 type Type interface {
227 // For an abstract method, Recv returns the enclosing interface either
228 // as a *Named or an *Interface. Due to embedding, an interface may
229 // contain methods whose receiver type is a different interface.
241 // An Interface represents an interface type.
242 type Interface struct {
246 allMethods []*Func // ordered list of methods declared with or embedded in this interface (TODO(gri): replace with mset
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
type.go 10 // All types implement the Type interface.
11 type Type interface {
227 // For an abstract method, Recv returns the enclosing interface either
228 // as a *Named or an *Interface. Due to embedding, an interface may
229 // contain methods whose receiver type is a different interface.
241 // An Interface represents an interface type.
242 type Interface struct {
246 allMethods []*Func // ordered list of methods declared with or embedded in this interface (TODO(gri): replace with mset
    [all...]
  /build/blueprint/proptools/
clone_test.go 24 in interface{}
25 out interface{}
129 // Clone interface
130 in: &struct{ S interface{} }{
135 out: &struct{ S interface{} }{
142 // Clone nested interface
144 Nested struct{ S interface{} }
146 Nested: struct{ S interface{} }{
153 Nested struct{ S interface{} }
155 Nested: struct{ S interface{} }{
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmConsole.c 306 VOID *Interface;
319 &Interface
321 if (Status == EFI_SUCCESS && Interface == *ProtocolInterface) {
373 &Interface
380 *ProtocolInterface = Interface;
385 TextOut = (EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *) Interface;
  /prebuilts/go/darwin-x86/src/sort/
example_keys_test.go 41 // Len is part of sort.Interface.
46 // Swap is part of sort.Interface.
51 // Less is part of sort.Interface. It is implemented by calling the "by" closure in the sorter.
  /prebuilts/go/linux-x86/src/sort/
example_keys_test.go 41 // Len is part of sort.Interface.
46 // Swap is part of sort.Interface.
51 // Less is part of sort.Interface. It is implemented by calling the "by" closure in the sorter.
  /compatibility/cdd/8_performance-and-power/
8_3_power-saving-modes.md 13 Configuration and Power Interface (ACPI).
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BmLib.c 38 // File the file system interface to the device
385 in the system and return it's interface.
389 @param Interface On return, a pointer to the first interface
399 OUT VOID **Interface
407 (VOID **) Interface
  /device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/FspWrapperNotifyDxe/
FspWrapperNotifyDxe.c 81 VOID *Interface;
90 &Interface
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Impl.h 156 IP4_INTERFACE *Interface;
180 // interface and route table and caches.
240 #define IP4_NO_MAPPING(IpInstance) (!(IpInstance)->Interface->Configured)
  /external/autotest/client/cros/tendo/
peerd_dbus_helper.py 76 self._manager = dbus.Interface(
82 object_manager = dbus.Interface(
86 # map<interface name,
  /external/autotest/client/site_tests/security_SessionManagerDbusEndpoints/
security_SessionManagerDbusEndpoints.py 67 session_manager = dbus.Interface(proxy,
107 session_manager = dbus.Interface(proxy,
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/
pack_unittest.py 121 of an interface is 8 bytes.
123 kinds = (mojom.INT32, mojom.Interface('test_interface'))
130 although the size of an associated interface is 8 bytes.
133 mojom.AssociatedInterface(mojom.Interface('test_interface')))
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.mli 1 (*===-- llvm_bitreader.mli - LLVM OCaml Interface -------------*- OCaml -*-===*
12 This interface provides an OCaml API for the LLVM bitcode reader, the
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 1 (*===-- llvm_bitwriter.mli - LLVM OCaml Interface -------------*- OCaml -*-===*
12 This interface provides an OCaml API for the LLVM bitcode writer, the
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
llvm_passmgr_builder.mli 1 (*===-- llvm_passmgr_builder.mli - LLVM OCaml Interface -------*- OCaml -*-===*
12 This interface provides an OCaml API for LLVM pass manager builder
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitreader/
llvm_bitreader.mli 1 (*===-- llvm_bitreader.mli - LLVM Ocaml Interface ---------------*- C++ -*-===*
12 This interface provides an ocaml API for the LLVM bitcode reader, the
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 1 (*===-- llvm_bitwriter.mli - LLVM Ocaml Interface ---------------*- C++ -*-===*
12 This interface provides an ocaml API for the LLVM bitcode writer, the
  /external/tensorflow/tensorflow/go/
tensor.go 72 func NewTensor(value interface{}) (*Tensor, error) {
174 func (t *Tensor) Value() interface{} {
189 return reflect.Indirect(val).Interface()
291 func byteSizeOfEncodedStrings(val interface{}) uintptr {
299 size += byteSizeOfEncodedStrings(v.Index(i).Interface())
317 if err := binary.Write(w, nativeEndian, v.Interface()); err != nil {
335 return binary.Write(w, nativeEndian, v.Interface())
364 if err := binary.Read(r, nativeEndian, ptr.Interface()); err != nil {
376 return binary.Read(r, nativeEndian, val.Interface())
405 s = v.Interface().(string
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_disconnect.py 20 print " -i = interface name"
21 print " -w = wpas dbus interface = fi.w1.wpa_supplicant1"
59 # Generating interface/object paths
65 self.wpas_dbus_interface + ".Interface"
76 self.wpas = dbus.Interface(self.wpas_object,
79 # Try to see if supplicant knows about interface
85 error = 'Error:\n Interface ' + self.interface_name \
93 self.p2p_interface = dbus.Interface(self.interface_object,
134 # Interface Name
137 # Dbus interface
    [all...]

Completed in 1524 milliseconds

<<11121314151617181920>>