| /src/sys/external/bsd/acpica/dist/common/ | 
| ahids.c | 334  * RETURN:      ID info struct. NULL if HardwareId is not found 344     const AH_DEVICE_ID      *Info;
 347     for (Info = AslDeviceIds; Info->Name; Info++)
 349         if (!strcmp (HardwareId, Info->Name))
 351             return (Info);
 
 | 
| ahpredef.c | 212     AH_PREDEF ("_CBR",    "CXL Host Bridge Register Info", "Get the memory location of CXL Host Bridge Registers"), 336     AH_PREDEF ("_PMC",    "Power Meter Capabilities", "Returns a list of Power Meter capabilities info"),
 401     AH_PREDEF ("_SBA",    "SM Bus Alert information", "Returns info on an SMBus alert"),
 402     AH_PREDEF ("_SBI",    "SM Bus General information", "Returns info on an SMBus segment"),
 479  * RETURN:      ID info struct. NULL if Nameseg not found
 489     const AH_PREDEFINED_NAME    *Info;
 501     for (Info = AslPredefinedInfo; Info->Name; Info++)
 503         if (ACPI_COMPARE_NAMESEG (Nameseg, Info->Name)
 [all...]
 | 
| ahtable.c | 181     const AH_TABLE      *Info; 184     for (Info = AcpiGbl_SupportedTables; Info->Signature; Info++)
 186         if (ACPI_COMPARE_NAMESEG (Signature, Info->Signature))
 188             return (Info);
 
 | 
| ahuuids.c | 236     const AH_UUID           *Info; 242     for (Info = Gbl_AcpiUuids; Info->Description; Info++)
 246         if (!Info->String)
 251         AcpiUtConvertStringToUuid (Info->String, UuidBuffer);
 255             return (Info->Description);
 
 | 
| /src/sys/external/bsd/acpica/dist/dispatcher/ | 
| dsinit.c | 179  *              Context         - Points to a init info struct 200     ACPI_INIT_WALK_INFO     *Info = (ACPI_INIT_WALK_INFO *) Context;
 213     if (Node->OwnerId != Info->OwnerId)
 218     Info->ObjectCount++;
 234         Info->OpRegionCount++;
 246         Info->MethodCount++;
 257             Info->SerialMethodCount++;
 270                 Info->SerialMethodCount++;
 271                 Info->SerializedMethodCount++;
 276         Info->NonSerialMethodCount++
 [all...]
 | 
| dsfield.c | 184     ACPI_CREATE_FIELD_INFO  *Info, 420  * PARAMETERS:  Info            - CreateField info structure
 433     ACPI_CREATE_FIELD_INFO  *Info,
 448     ACPI_FUNCTION_TRACE_PTR (DsGetFieldNames, Info);
 453     Info->FieldBitPosition = 0;
 470             Position = (UINT64) Info->FieldBitPosition +
 480             Info->FieldBitPosition = (UINT32) Position;
 498             Info->FieldFlags = (UINT8)
 499                 ((Info->FieldFlags & ~(AML_FIELD_ACCESS_TYPE_MASK))
 [all...]
 | 
| dsmethod.c | 551             /* Update the mutex and walk info and save the original SyncLevel */ 628  * PARAMETERS:  Thread              - Info for this thread
 648     ACPI_EVALUATE_INFO      *Info;
 719     Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
 720     if (!Info)
 726     Info->Parameters = &ThisWalkState->Operands[0];
 730         Info, ACPI_IMODE_EXECUTE);
 732     ACPI_FREE (Info);
 
 | 
| /src/sys/external/bsd/acpica/dist/namespace/ | 
| nsdumpdv.c | 190     ACPI_DEVICE_INFO        *Info; 204         Info = Buffer.Pointer;
 212             Info->HardwareId.Value, ACPI_FORMAT_UINT64 (Info->Address)));
 213         ACPI_FREE (Info);
 
 | 
| nsparse.c | 196     ACPI_EVALUATE_INFO      *Info = NULL; 237     Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
 238     if (!Info)
 253     Info->PassNumber = ACPI_IMODE_EXECUTE;
 254     Info->Node = StartNode;
 255     Info->ObjDesc = MethodObj;
 256     Info->NodeFlags = Info->Node->Flags;
 257     Info->FullPathname = AcpiNsGetNormalizedPathname (Info->Node, TRUE)
 [all...]
 | 
| nsinit.c | 204     ACPI_INIT_WALK_INFO     Info; 217     /* Clear the info block */
 219     memset (&Info, 0, sizeof (ACPI_INIT_WALK_INFO));
 229         ACPI_UINT32_MAX, AcpiNsInitOneObject, NULL, &Info, NULL);
 237         Info.ObjectCount,
 238         Info.ObjectCount));
 242         Info.MethodCount, Info.OpRegionCount));
 269     ACPI_DEVICE_WALK_INFO   Info;
 283         Info.DeviceCount = 0
 [all...]
 | 
| nsxfeval.c | 168     ACPI_EVALUATE_INFO      *Info); 332     ACPI_EVALUATE_INFO      *Info;
 342     Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
 343     if (!Info)
 350     Info->PrefixNode = AcpiNsValidateHandle (Handle);
 351     if (!Info->PrefixNode)
 370         Info->PrefixNode = NULL;
 394     Info->RelativePathname = __UNCONST(Pathname);
 402         Info->ParamCount = (UINT16) ExternalParams->Count;
 406         if (Info->ParamCount > ACPI_METHOD_NUM_ARGS
 [all...]
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ | 
| xray_utils.cc | 89   zx_info_handle_basic_t Info; 90   Status = _zx_object_get_info(_zx_process_self(), ZX_INFO_HANDLE_BASIC, &Info,
 91                                sizeof(Info), NULL, NULL);
 93     Report("XRay: cannot get basic info about current process handle: %s\n",
 101                     Info.koid);
 
 | 
| /src/sys/external/bsd/acpica/dist/compiler/ | 
| aslfileio.c | 163  * PARAMETERS:  FileId              - Index into file info array 190  * PARAMETERS:  FileId              - Index into file info array
 228  * PARAMETERS:  FileId              - Index into file info array
 258  * PARAMETERS:  FileId              - Index into file info array
 302  * PARAMETERS:  FileId              - Index into file info array
 350  * PARAMETERS:  FileId              - Index into file info array
 411  * PARAMETERS:  FileId              - Index into file info array
 442  * PARAMETERS:  FileId              - Index into file info array
 480  * PARAMETERS:  FileId              - Index into file info array
 492     ASL_FILE_INFO           *Info = &AslGbl_Files[FileId]
 [all...]
 | 
| aslmapenter.c | 188  *              Creates new GPIO info blocks, one for each pin defined by the 201     ACPI_GPIO_INFO          *Info;
 212     /* Create an info block for each pin defined in the descriptor */
 216         Info = MpCreateGpioInfo (PinList[i], DeviceName);
 218         Info->Op = Op;
 219         Info->DeviceName = DeviceName;
 220         Info->PinCount = PinCount;
 221         Info->PinIndex = i;
 222         Info->PinNumber = PinList[i];
 223         Info->Type = Resource->Gpio.ConnectionType
 [all...]
 | 
| dtexpress.c | 429     ACPI_DMTABLE_INFO       *Info; 446         Info = DtGetGenericTableInfo (GenericField->Name);
 447         if (Info)
 452             TableOffset += DtGetFieldLength (GenericField, Info);
 456             if (Info->Opcode == ACPI_DMT_LABEL)
 
 | 
| aslmapoutput.c | 190     ACPI_GPIO_INFO          *Info); 288  * DESCRIPTION: Emit the info about all GPIO devices found during the
 297     ACPI_GPIO_INFO          *Info;
 310     Info = AslGbl_GpioList;
 311     while (Info)
 313         HidString = MpGetHidViaNamestring (Info->DeviceName);
 315         /* Print header info for the controller itself */
 318             strcmp (PrevDeviceName, Info->DeviceName))
 322                 HidString, Info->DeviceName);
 336         PrevDeviceName = Info->DeviceName
 [all...]
 | 
| aslresource.c | 755     ASL_RESOURCE_INFO       *Info, 763     switch (Info->DescriptorTypeOp->Asl.ParseOpcode)
 768         Rnode = RsDoClockInputDescriptor(Info);
 773         Rnode = RsDoDmaDescriptor (Info);
 778         Rnode = RsDoFixedDmaDescriptor (Info);
 783         Rnode = RsDoDwordIoDescriptor (Info);
 788         Rnode = RsDoDwordMemoryDescriptor (Info);
 793         Rnode = RsDoDwordPccDescriptor (Info);
 798         Rnode = RsDoDwordSpaceDescriptor (Info);
 808                 Info->DescriptorTypeOp, NULL)
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/events/ | 
| evmisc.c | 225     ACPI_GENERIC_STATE      *Info; 274     /* Setup notify info and schedule the notify dispatcher */
 276     Info = AcpiUtCreateGenericState ();
 277     if (!Info)
 282     Info->Common.DescriptorType = ACPI_DESC_TYPE_STATE_NOTIFY;
 284     Info->Notify.Node = Node;
 285     Info->Notify.Value = (UINT16) NotifyValue;
 286     Info->Notify.HandlerListId = HandlerListId;
 287     Info->Notify.HandlerListHead = HandlerListHead;
 288     Info->Notify.Global = &AcpiGbl_GlobalNotify[HandlerListId]
 [all...]
 | 
| evgpeutil.c | 243     ACPI_GPE_DEVICE_INFO    *Info = Context; 248     Info->NextBlockBaseIndex += GpeBlock->GpeCount;
 250     if (Info->Index < Info->NextBlockBaseIndex)
 258             Info->GpeDevice = GpeBlock->Node;
 261         Info->Status = AE_OK;
 368  * PARAMETERS:  GpeXrupt        - A GPE interrupt info block
 436  * PARAMETERS:  GpeXruptInfo        - GPE Interrupt info
 437  *              GpeBlock            - Gpe Block info
 
 | 
| evxfgpe.c | 542  *              contains the info for the wake GPE associated with the 918  *              is set in the GPE info.
 1319     ACPI_GPE_DEVICE_INFO    Info;
 1338     Info.Index = Index;
 1339     Info.Status = AE_NOT_EXIST;
 1340     Info.GpeDevice = NULL;
 1341     Info.NextBlockBaseIndex = 0;
 1343     Status = AcpiEvWalkGpeList (AcpiEvGetGpeDevice, &Info);
 1349     *GpeDevice = ACPI_CAST_PTR (ACPI_HANDLE, Info.GpeDevice);
 1350     return_ACPI_STATUS (Info.Status)
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/hardware/ | 
| hwxface.c | 334     /* Get the info structure corresponding to the requested ACPI Register */ 403     /* Get the info structure corresponding to the requested ACPI Register */
 525     ACPI_EVALUATE_INFO      *Info;
 542     Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
 543     if (!Info)
 552     Info->RelativePathname = AcpiGbl_SleepStateNames[SleepState];
 554     Status = AcpiNsEvaluate (Info);
 569     if (!Info->ReturnObject)
 572             Info->RelativePathname));
 579     if (Info->ReturnObject->Common.Type != ACPI_TYPE_PACKAGE
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/utilities/ | 
| uteval.c | 187     ACPI_EVALUATE_INFO      *Info; 197     Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
 198     if (!Info)
 203     Info->PrefixNode = PrefixNode;
 204     Info->RelativePathname = __UNCONST(Path);
 208     Status = AcpiNsEvaluate (Info);
 227     if (!Info->ReturnObject)
 242     switch ((Info->ReturnObject)->Common.Type)
 278         AcpiUtRemoveReference (Info->ReturnObject);
 291             Path, AcpiUtGetObjectTypeName (Info->ReturnObject)
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/resources/ | 
| rsxface.c | 171     ACPI_COPY_FIELD(Out, In, Info);                      \ 600     ACPI_VENDOR_WALK_INFO   Info;
 611     Info.Uuid = Uuid;
 612     Info.Buffer = RetBuffer;
 613     Info.Status = AE_NOT_EXIST;
 618         DeviceHandle, Name, AcpiRsMatchVendorResource, &Info);
 624     return (Info.Status);
 647     ACPI_VENDOR_WALK_INFO       *Info = Context;
 670         (Vendor->UuidSubtype != Info->Uuid->Subtype)  ||
 671         (memcmp (Vendor->Uuid, Info->Uuid->Data, ACPI_UUID_LENGTH))
 [all...]
 | 
| /src/sys/external/bsd/gnu-efi/dist/inc/ | 
| efishellintf.h | 64   EFI_LOADED_IMAGE *Info; 
 | 
| /src/sys/external/bsd/acpica/dist/disassembler/ | 
| dmwalk.c | 220     ACPI_OP_WALK_INFO       Info; 228     memset (&Info, 0, sizeof (ACPI_OP_WALK_INFO));
 229     Info.WalkState = WalkState;
 230     Info.StartAml = Op->Common.Aml - sizeof (ACPI_TABLE_HEADER);
 231     Info.AmlOffset = Op->Common.Aml - Info.StartAml;
 233     AcpiDmWalkParseTree (Op, AcpiDmDescendingOp, AcpiDmAscendingOp, &Info);
 264     ACPI_OP_WALK_INFO       *Info = Context;
 267     Info->Level = 0;
 276                 Status = AscendingCallback (Op, Info->Level, Context)
 [all...]
 |