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

  /src/external/apache2/llvm/dist/llvm/lib/IR/
PassRegistry.cpp 82 PassInfo *InterfaceInfo = const_cast<PassInfo *>(getPassInfo(InterfaceID));
83 if (!InterfaceInfo) {
86 InterfaceInfo = &Registeree;
100 ImplementationInfo->addInterfaceImplemented(InterfaceInfo);
103 assert(InterfaceInfo->getNormalCtor() == nullptr &&
108 InterfaceInfo->setNormalCtor(ImplementationInfo->getNormalCtor());
  /src/sys/external/bsd/acpica/dist/utilities/
utxface.c 336 ACPI_INTERFACE_INFO *InterfaceInfo;
354 InterfaceInfo = AcpiUtGetInterface (InterfaceName);
355 if (InterfaceInfo)
361 if (InterfaceInfo->Flags & ACPI_OSI_INVALID)
363 InterfaceInfo->Flags &= ~ACPI_OSI_INVALID;
utosi.c 263 ACPI_INTERFACE_INFO *InterfaceInfo;
268 InterfaceInfo = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_INTERFACE_INFO));
269 if (!InterfaceInfo)
274 InterfaceInfo->Name = ACPI_ALLOCATE_ZEROED (strlen (InterfaceName) + 1);
275 if (!InterfaceInfo->Name)
277 ACPI_FREE (InterfaceInfo);
283 strcpy (__UNCONST(InterfaceInfo->Name), InterfaceName);
284 InterfaceInfo->Flags = ACPI_OSI_DYNAMIC;
285 InterfaceInfo->Next = AcpiGbl_SupportedInterfaces;
287 AcpiGbl_SupportedInterfaces = InterfaceInfo;
    [all...]

Completed in 57 milliseconds