| /src/sys/external/bsd/acpica/dist/namespace/ | 
| nseval.c | 168  * PARAMETERS:  Info            - Evaluation info block, contains these fields 192     ACPI_EVALUATE_INFO      *Info)
 200     if (!Info)
 205     if (!Info->Node)
 215         Status = AcpiNsGetNode (Info->PrefixNode, Info->RelativePathname,
 216             ACPI_NS_NO_UPSEARCH, &Info->Node);
 227     if (AcpiNsGetType (Info->Node) == ACPI_TYPE_LOCAL_METHOD_ALIAS)
 229         Info->Node = ACPI_CAST_PTR
 [all...]
 | 
| nspredef.c | 190     ACPI_EVALUATE_INFO          *Info, 203  *              Info            - Method execution information block
 218     ACPI_EVALUATE_INFO          *Info,
 230     Predefined = Info->Predefined;
 260         (!Predefined->Info.ExpectedBtypes) ||
 261         (Predefined->Info.ExpectedBtypes == ACPI_RTYPE_ALL))
 270     Status = AcpiNsCheckObjectType (Info, ReturnObjectPtr,
 271         Predefined->Info.ExpectedBtypes, ACPI_NOT_PACKAGE_ELEMENT);
 293         Info->ParentPackage = *ReturnObjectPtr;
 294         Status = AcpiNsCheckPackage (Info, ReturnObjectPtr)
 [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...]
 | 
| 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...]
 | 
| nsarguments.c | 166  * PARAMETERS:  Info            - Method execution information block 177     ACPI_EVALUATE_INFO          *Info)
 193     if (!Info->Predefined || (Info->Node->Flags & ANOBJ_EVALUATED))
 198     ArgTypeList = Info->Predefined->Info.ArgumentList;
 203     for (i = 0; ((i < ArgCount) && (i < Info->ParamCount)); i++)
 206         UserArgType = Info->Parameters[i]->Common.Type;
 212             ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname, ACPI_WARN_ALWAYS,
 220             Info->Node->Flags |= ANOBJ_EVALUATED
 [all...]
 | 
| nsprepkg.c | 166     ACPI_EVALUATE_INFO          *Info, 173     ACPI_EVALUATE_INFO          *Info,
 183     ACPI_EVALUATE_INFO          *Info,
 192  * PARAMETERS:  Info                - Method execution information block
 205     ACPI_EVALUATE_INFO          *Info,
 220     /* The package info for this name is in the next table entry */
 222     Package = Info->Predefined + 1;
 226         Info->FullPathname, Package->RetInfo.Type,
 233     AcpiNsRemoveNullElements (Info, Package->RetInfo.Type, ReturnObject);
 251         ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname, Info->NodeFlags
 [all...]
 | 
| nsrepair2.c | 167     ACPI_EVALUATE_INFO      *Info, 186     ACPI_EVALUATE_INFO      *Info,
 191     ACPI_EVALUATE_INFO      *Info,
 196     ACPI_EVALUATE_INFO      *Info,
 201     ACPI_EVALUATE_INFO      *Info,
 206     ACPI_EVALUATE_INFO      *Info,
 211     ACPI_EVALUATE_INFO      *Info,
 216     ACPI_EVALUATE_INFO      *Info,
 221     ACPI_EVALUATE_INFO      *Info,
 226     ACPI_EVALUATE_INFO      *Info,
 [all...]
 | 
| 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...]
 | 
| nsrepair.c | 245  * PARAMETERS:  Info                - Method execution information block 262     ACPI_EVALUATE_INFO      *Info,
 280     Predefined = AcpiNsMatchSimpleRepair (Info->Node,
 281         Info->ReturnBtype, PackageIndex);
 286             ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname,
 290         Status = Predefined->ObjectConverter (Info->Node, ReturnObject,
 310     if (Info->ReturnBtype & ExpectedBtypes)
 336                 ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname,
 339                 Status = AcpiNsRepairNullElement (Info, ExpectedBtypes,
 349                 ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname
 [all...]
 | 
| /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);
 
 | 
| 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);
 
 | 
| 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);
 
 | 
| /src/sys/external/bsd/acpica/dist/compiler/ | 
| 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...]
 | 
| 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...]
 | 
| aslpredef.c | 183  *              MethodInfo      - Saved info about this method 243         RequiredArgCount = METHOD_GET_ARG_COUNT (ThisName->Info.ArgumentList);
 248                 ThisName->Info.Name, RequiredArgCount);
 256                 !(ThisName->Info.ArgumentList & ARG_COUNT_IS_MINIMUM))
 268             ThisName->Info.ExpectedBtypes)
 271                 ThisName->Info.ExpectedBtypes);
 274                 AslGbl_StringBuffer, ThisName->Info.Name);
 291  *              MethodInfo      - Saved info about this method
 338  *              MethodInfo      - Saved info about this method
 392         if (!ThisName->Info.ExpectedBtypes
 [all...]
 | 
| /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...]
 | 
| /src/sys/external/bsd/acpica/dist/tools/acpihelp/ | 
| ahdecode.c | 268     const AH_DIRECTIVE_INFO *Info; 273     for (Info = Gbl_PreprocessorDirectives; Info->Name; Info++)
 275         printf ("  %-36s : %s\n", Info->Name, Info->Description);
 450     const AH_PREDEFINED_NAME    *Info;
 458     for (Info = AslPredefinedInfo; Info->Name; Info++
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/parser/ | 
| psxface.c | 168     ACPI_EVALUATE_INFO      *Info, 219  * PARAMETERS:  Info            - Method info block, contains:
 240     ACPI_EVALUATE_INFO      *Info)
 254     /* Validate the Info and method Node */
 256     if (!Info || !Info->Node)
 263     Status = AcpiDsBeginMethodExecution (Info->Node, Info->ObjDesc, NULL);
 272     AcpiPsUpdateParameterList (Info, REF_INCREMENT)
 [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...]
 | 
| /src/sys/external/bsd/acpica/dist/resources/ | 
| rsmisc.c | 175  *              Info                - Pointer to appropriate conversion table 188     ACPI_RSCONVERT_INFO     *Info)
 203     if (!Info)
 225     Count = INIT_TABLE_LENGTH (Info);
 234         Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset);
 235         Destination = ACPI_ADD_PTR (void, Resource, Info->ResourceOffset);
 237         switch (Info->Opcode)
 243             memset (Resource, 0, INIT_RESOURCE_LENGTH (Info));
 244             Resource->Type = INIT_RESOURCE_TYPE (Info);
 245             Resource->Length = INIT_RESOURCE_LENGTH (Info);
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/tools/acpixtract/ | 
| axutils.c | 566     AX_TABLE_INFO           *Info; 569     Info = Gbl_TableListHead;
 570     while (Info)
 572         if (*(UINT32 *) Signature == Info->Signature)
 577         Info = Info->Next;
 580     if (!Info)
 582         /* Signature not found, create new table info block */
 584         Info = malloc (sizeof (AX_TABLE_INFO));
 585         if (!Info)
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/utilities/ | 
| utpredef.c | 184  *              cases where a package info entry follows a method name that 196      * (next entry contains the package info)
 198     if ((ThisName->Info.ExpectedBtypes & ACPI_RTYPE_PACKAGE) &&
 199         (ThisName->Info.ExpectedBtypes != ACPI_RTYPE_ALL))
 235     /* Search info table for a predefined method/object name */
 238     while (ThisName->Info.Name[0])
 240         if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name))
 372     /* Search info table for a predefined method/object name */
 375     while (ThisName->Info.Name[0])
 377         if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name)
 [all...]
 | 
| /src/sys/external/bsd/acpica/dist/executer/ | 
| exprep.c | 536  * PARAMETERS:  Info    - Contains all field creation info 547     ACPI_CREATE_FIELD_INFO  *Info)
 561     if (Info->FieldType != ACPI_TYPE_LOCAL_INDEX_FIELD)
 563         if (!Info->RegionNode)
 569         Type = AcpiNsGetType (Info->RegionNode);
 581     ObjDesc = AcpiUtCreateInternalObject (Info->FieldType);
 589     ObjDesc->CommonField.Node = Info->FieldNode;
 591         Info->FieldFlags, Info->Attribute
 [all...]
 |