/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ |
hand.c | 25 OUT VOID **Interface 28 // Find the first instance of this Protocol in the system and return it's interface 36 *Interface = NULL; 44 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], ProtocolGuid, Interface); 310 // File the file system interface to the device 447 VOID *Interface; 478 Interface = va_arg(args, VOID *); 484 DEBUG((D_INFO, "LibInstallProtocolInterface: %d %x\n", Protocol, Interface)); 485 Status = uefi_call_wrapper(BS->InstallProtocolInterface, 4, Handle, Protocol, EFI_NATIVE_INTERFACE, Interface); 503 Interface = va_arg(args, VOID *) [all...] |
/prebuilts/go/darwin-x86/src/sort/ |
sort.go | 13 // A type, typically a collection, that satisfies sort.Interface can be 16 type Interface interface { 27 func insertionSort(data Interface, a, b int) { 37 func siftDown(data Interface, lo, hi, first int) { 55 func heapSort(data Interface, a, b int) { 76 func medianOfThree(data Interface, m1, m0, m2 int) { 92 func swapRange(data Interface, a, b, n int) { 98 func doPivot(data Interface, lo, hi int) (midlo, midhi int) { 185 func quickSort(data Interface, a, b, maxDepth int) [all...] |
/prebuilts/go/linux-x86/src/sort/ |
sort.go | 13 // A type, typically a collection, that satisfies sort.Interface can be 16 type Interface interface { 27 func insertionSort(data Interface, a, b int) { 37 func siftDown(data Interface, lo, hi, first int) { 55 func heapSort(data Interface, a, b int) { 76 func medianOfThree(data Interface, m1, m0, m2 int) { 92 func swapRange(data Interface, a, b, n int) { 98 func doPivot(data Interface, lo, hi int) (midlo, midhi int) { 185 func quickSort(data Interface, a, b, maxDepth int) [all...] |
/art/test/122-npe/src/ |
Main.java | 509 Interface i = null; 587 interface Interface {
|
/device/linaro/bootloader/edk2/DuetPkg/DxeIpl/ |
HobGeneration.h | 48 EFI_PHYSICAL_ADDRESS Interface;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/ |
UsbDesc.c | 20 Free the interface setting descriptor.
35 // Each interface setting may have several endpoints, free them first.
58 Free a configuration descriptor with its interface
69 USB_INTERFACE_DESC *Interface;
75 // A configuration may have several interfaces, free the interface
78 Interface = Config->Interfaces[Index];
80 if (Interface == NULL) {
85 // Each interface may have several settings, free the settings
87 for (SetIndex = 0; SetIndex < Interface->NumOfSetting; SetIndex++) {
88 if (Interface->Settings[SetIndex] != NULL) { [all...] |
/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...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/ |
PiSmmCore.h | 154 /// with a protocol interface structure
166 /// The interface value
167 VOID *Interface;
240 @param InterfaceType Indicates whether Interface is supplied in
242 @param Interface The interface for the protocol being added
253 IN VOID *Interface
415 Installs a protocol interface into the boot services environment.
420 @param InterfaceType Indicates whether Interface is supplied in
422 @param Interface The interface for the protocol being added [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;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableDxe/ |
FirmwarePerformanceDxe.c | 241 VOID *Interface;
255 Status = gBS->LocateProtocol (&gEfiLockBoxProtocolGuid, NULL, &Interface);
265 Status = gBS->LocateProtocol (&gEfiVariableArchProtocolGuid, NULL, &Interface);
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ |
ConPlatform.c | 157 VOID *Interface;
180 (VOID **) &Interface,
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4If.c | 2 Implement IP4 pesudo interface.
134 @param[in] Interface The interface to send out to.
148 IN IP4_INTERFACE *Interface,
171 Token->Interface = Interface;
177 CopyMem (&Token->SrcMac, &Interface->Mac, sizeof (Token->SrcMac));
235 @param[in] Interface The interface to send ARP from.
244 IN IP4_INTERFACE *Interface,
[all...] |
Ip4If.h | 2 Definition for IP4 pesudo interface structure.
64 IP4_INTERFACE *Interface;
81 IP4_INTERFACE *Interface;
106 IP4_INTERFACE *Interface;
135 // with the same station address share a single interface structure.
136 // Each interface has its own ARP child, and shares one MNP child.
137 // Notice the special cases that DHCP can configure the interface
146 // IP address and subnet mask of the interface. It also contains
175 // The interface's MAC and broadcast MAC address.
192 the interface is configured. [all...] |
/external/autotest/client/common_lib/cros/network/ |
interface.py | 20 # A tuple describing a default route, consisting of an interface name, 66 class Interface: 75 INTERFACE_NAME_ETHERNET = 'eth0' # Assume this is `the` ethernet interface. 80 """Get an interface object representing a connected ethernet device. 82 Raises an exception if no such interface exists. 86 @return an Interface object except under the conditions described above. 91 ethernet_if = Interface(device_name) 99 raise error.TestFail('Failed to find ethernet interface.') 111 """@return name of the interface (e.g. 'wlan0').""" 117 """@return the addresses (MAC, IP) associated with interface."" [all...] |
/external/clang/lib/Sema/ |
CodeCompleteConsumer.cpp | 1 //===--- CodeCompleteConsumer.cpp - Code Completion Interface ---*- C++ -*-===// 308 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); 309 if (!Interface) { 316 OS << Interface->getName() << '(' << Cat->getName() << ')';
|
/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());
|
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
Interface.java | 8 import org.chromium.mojo.bindings.Interface.AbstractProxy.HandlerImpl; 19 public interface Interface extends ConnectionErrorHandler, Closeable { 22 * The close method is called when the connection to the interface is closed. 30 * A proxy to a mojo interface. This is base class for all generated proxies. It implements the 31 * Interface and each time a method is called, the parameters are serialized and sent to the 34 public interface Proxy extends Interface { 38 public interface Handler extends Closeable { 51 * Returns the version number of the interface that the remote side supports [all...] |
/external/mockito/src/test/java/org/mockito/internal/util/reflection/ |
FieldInitializerTest.java | 32 private Interface interfaceType; 35 private Interface instantiatedInterfaceType = new ConcreteStaticClass(); 197 interface Interface { 201 static class ConcreteStaticClass extends AbstractStaticClass implements Interface {
|
/external/tpm2/generator/ |
structure_generator.py | 372 Interface objects. 399 # interface. 629 class Interface(TPMType): 630 """Represents a TPM interface type definition. 633 old_type: The base type of the interface (e.g. 'TPM_HANDLE'). 723 """Initializes an Interface instance. 729 old_type: The base type of the interface. 732 super(Interface, self).__init__() 742 """Returns true if Interface has a valid conditional_value.""" 750 """Writes marshal implementation for Interface to |out_file| [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
madcapcl.h | 39 IPNG_ADDRESS Interface;
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
const.go | 32 U interface{} 88 // Interface returns the constant value stored in v as an interface{}. 91 func (v Val) Interface() interface{} { 94 Fatalf("unexpected Interface for %T", v.U)
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
const.go | 32 U interface{} 88 // Interface returns the constant value stored in v as an interface{}. 91 func (v Val) Interface() interface{} { 94 Fatalf("unexpected Interface for %T", v.U)
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/Bds/ |
BootOptionSupport.c | 779 VOID *Interface;
817 &Interface
[all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/ |
BdsConsole.c | 89 VOID *Interface;
102 &Interface
104 if (Status == EFI_SUCCESS && Interface == *ProtocolInterface) {
155 &Interface
162 *ProtocolInterface = Interface;
167 TextOut = (EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *) Interface;
[all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/ |
SectionExtraction.c | 229 section extraction interface and installs it on a new handle.
563 VOID *Interface;
575 Status = gBS->LocateProtocol (GuidedSectionGuid, NULL, (VOID **) &Interface);
576 if (!EFI_ERROR (Status) && Interface != NULL) {
580 *GuidedSectionExtraction = (EFI_GUIDED_SECTION_EXTRACTION_PROTOCOL *) Interface;
[all...] |