HomeSort by: relevance | last modified time | path
    Searched defs:Interface (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/lib/
hand.c 27 OUT VOID **Interface
30 // Find the first instance of this Protocol in the system and return it's interface
38 *Interface = NULL;
46 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], ProtocolGuid, Interface);
311 // File the file system interface to the device
448 VOID *Interface;
479 Interface = va_arg(args, VOID *);
485 DEBUG((D_INFO, "LibInstallProtocolInterface: %d %x\n", Protocol, Interface));
486 Status = uefi_call_wrapper(BS->InstallProtocolInterface, 4, Handle, Protocol, EFI_NATIVE_INTERFACE, Interface);
507 Interface = va_arg(args, VOID *)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
CodeCompleteConsumer.cpp 1 //===- CodeCompleteConsumer.cpp - Code Completion Interface ---------------===//
399 const ObjCInterfaceDecl *Interface = Cat->getClassInterface();
400 if (!Interface) {
407 OS << Interface->getName() << '(' << Cat->getName() << ')';
  /src/usr.sbin/map-mbone/
mapper.c 62 typedef struct interface { struct
63 struct interface *next;
64 u_int32_t addr; /* IP address of the interface in NET order */
66 } Interface;
74 struct interface *interfaces; /* Else, neighbor data */
90 Interface * find_interface(u_int32_t addr, Node *node);
129 Interface *find_interface(u_int32_t addr, Node *node)
131 Interface *ifc;
137 ifc = (Interface *) malloc(sizeof(Interface));
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 550 const ObjCInterfaceDecl *Interface = IvarDecl->getContainingInterface();
555 if (classHasSeparateTeardown(Interface))
558 ObjCImplDecl *ImplDecl = Interface->getImplementation();
657 // external interface, treat the property a read-only. If the outside
DynamicTypePropagation.cpp 713 // It is illegal to typedef parameterized types inside an interface. Therefore
736 /// A method might not be available in the interface indicated by the static
839 const ObjCInterfaceDecl *Interface = Method->getClassInterface();
840 if (!Interface)
843 ObjCTypeParamList *TypeParams = Interface->getTypeParamList();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 1103 // If the class interface is declared inside the main file, assume it is not
1166 const ObjCInterfaceDecl *Interface;
1187 llvm::hash_code(InterfaceInfo::getHashValue(Key.Interface)),
1194 return InterfaceInfo::isEqual(LHS.Interface, RHS.Interface) &&
1202 lookupRuntimeDefinition(const ObjCInterfaceDecl *Interface,
1223 PMC[{Interface, LookupSelector, InstanceMethod}];
1227 Val = Interface->lookupPrivateMethod(LookupSelector, InstanceMethod);
1231 Val = Interface->lookupMethod(LookupSelector, InstanceMethod);
  /src/sys/arch/prep/include/
residual.h 187 unsigned char Interface; /* See pnp.h for bit definitions */
321 int SubType, int Interface, int n);
  /src/sys/arch/emips/ebus/
ace_ebus.c 610 * Reset the device and the interface
622 /* reset our interface */
630 /* check what our interface does and what the SysACE expects */
1359 struct _Sac *Interface = sc->sc_dr;
1364 CtlWas = Interface->CONTROLREG;
1370 Interface->CONTROLREG = CFGCMD | SAC_CFGRESET;
1373 Interface->CONTROLREG = CFGCMD;
1380 Status = Interface->STATUS;
1400 nBytes, nWords, Interface));
1404 Status = Interface->ERRORREG
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 397 Interface = 0x03
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 760 // Terminate when we reach an interface type.
778 // Terminate when we reach an interface type.
795 // Terminate when we reach an interface type.
2268 // ObjC interfaces are incomplete if they are @class, not @interface.
2269 ObjCInterfaceDecl *Interface
2272 *Def = Interface;
2273 return !Interface->hasDefinition();
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 1259 // deserializing the interface declaration, so that it will consider this
4284 /// Given an ObjC interface, goes through the modules and links to the
4285 /// interface all the categories for it.
4288 ObjCInterfaceDecl *Interface;
4318 << Interface->getDeclName() << Cat->getDeclName();
4330 Interface->setCategoryListRaw(Cat);
4336 ObjCInterfaceDecl *Interface,
4340 : Reader(Reader), Interface(Interface), Deserialized(Deserialized),
4343 for (auto *Cat : Interface->known_categories())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCMac.cpp 1 //===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===//
1254 /// interface ivars will be emitted. The return value has type
1260 /// for the metaclass of the given interface. The return value has
1393 const ObjCInterfaceDecl *Interface,
1456 /// interface ivars will be emitted. The return value has type
1540 /// interface. The return value has type EHTypePtrTy.
1578 // interface, we cannot perform this check.
1705 const ObjCInterfaceDecl *Interface,
1896 /* *** CGObjCMac Public Interface *** */
1904 /// GetClass - Return a reference to the class for the given interface
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 2854 Interface, ///< 'export module X;'
2859 /// of a module interface or implementation.
3113 // This is used for both record definitions and ObjC interface declarations.
4336 /// listed in the implelementation match those listed in the interface.
4398 /// handle creating the ObjcPropertyDecl for a category or \@interface.
4441 /// MatchAllMethodDeclarations - Check methods declaraed in interface or
12212 /// Code completion occurs within an Objective-C interface, protocol,
12219 /// in an Objective-C interface, protocol, category, or implementation.
12735 // A category implicitly has the attribute of the interface.

Completed in 69 milliseconds