Home
last modified time | relevance | path

Searched refs:ObjectType (Results 1 – 23 of 23) sorted by relevance

/illumos-gate/usr/src/common/acpica/dispatcher/
H A Ddswload.c262 ACPI_OBJECT_TYPE ObjectType; in AcpiDsLoad1BeginOp() local
296 ObjectType = WalkState->OpInfo->ObjectType; in AcpiDsLoad1BeginOp()
300 AcpiUtGetTypeName (ObjectType))); in AcpiDsLoad1BeginOp()
454 AcpiUtGetTypeName (ObjectType))); in AcpiDsLoad1BeginOp()
478 Node->Type = (UINT8) ObjectType; in AcpiDsLoad1BeginOp()
558 ACPI_OBJECT_TYPE ObjectType; in AcpiDsLoad1EndOp() local
581 ObjectType = WalkState->OpInfo->ObjectType; in AcpiDsLoad1EndOp()
637 ObjectType = (AcpiPsGetOpcodeInfo ( in AcpiDsLoad1EndOp()
666 Op->Common.Node->Type = (UINT8) ObjectType; in AcpiDsLoad1EndOp()
728 AcpiNsOpensScope (ObjectType)) in AcpiDsLoad1EndOp()
[all …]
H A Ddswload2.c186 ACPI_OBJECT_TYPE ObjectType; in AcpiDsLoad2BeginOp() local
248 ObjectType = WalkState->OpInfo->ObjectType; in AcpiDsLoad2BeginOp()
251 "State=%p Op=%p Type=%X\n", WalkState, Op, ObjectType)); in AcpiDsLoad2BeginOp()
269 Status = AcpiNsLookup (WalkState->ScopeInfo, BufferPtr, ObjectType, in AcpiDsLoad2BeginOp()
282 Status = AcpiDsScopeStackPush (Node, ObjectType, WalkState); in AcpiDsLoad2BeginOp()
391 if (AcpiNsOpensScope (ObjectType)) in AcpiDsLoad2BeginOp()
453 Status = AcpiNsLookup (WalkState->ScopeInfo, BufferPtr, ObjectType, in AcpiDsLoad2BeginOp()
519 ACPI_OBJECT_TYPE ObjectType; in AcpiDsLoad2EndOp() local
548 ObjectType = WalkState->OpInfo->ObjectType; in AcpiDsLoad2EndOp()
565 if (AcpiNsOpensScope (ObjectType) && in AcpiDsLoad2EndOp()
[all …]
H A Ddswexec.c368 if (AcpiNsOpensScope (WalkState->OpInfo->ObjectType)) in AcpiDsExecBeginOp()
372 AcpiUtGetTypeName (WalkState->OpInfo->ObjectType), Op)); in AcpiDsExecBeginOp()
H A Ddsutils.c789 if (OpInfo->ObjectType == ACPI_TYPE_INVALID) in AcpiDsCreateOperand()
817 ObjDesc = AcpiUtCreateInternalObject (OpInfo->ObjectType); in AcpiDsCreateOperand()
H A Ddspkginit.c452 UINT8 ObjectType, in AcpiDsInitPackageElement() argument
H A Ddsobject.c239 (AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode))->ObjectType); in AcpiDsBuildInternalObject()
/illumos-gate/usr/src/cmd/acpi/iasl/
H A Daslload.c469 ACPI_OBJECT_TYPE ObjectType; in LdNamespace1Begin() local
633 ObjectType = 1; in LdNamespace1Begin()
636 ObjectType++; in LdNamespace1Begin()
649 ObjectType = ACPI_TYPE_ANY; in LdNamespace1Begin()
853 Node->Type = (UINT8) ObjectType; in LdNamespace1Begin()
864 Node->Type = (UINT8) ObjectType; in LdNamespace1Begin()
868 if (AcpiNsOpensScope (ObjectType)) in LdNamespace1Begin()
991 ACPI_OBJECT_TYPE ObjectType; in LdNamespace2Begin() local
1016 ObjectType = ACPI_TYPE_LOCAL_RESOURCE; in LdNamespace2Begin()
1121 ACPI_OBJECT_TYPE ObjectType; in LdCommonNamespaceEnd() local
[all …]
H A Daslxref.c439 ACPI_OBJECT_TYPE ObjectType; in XfNamespaceLocateBegin() local
675 ObjectType = AslMapNamedOpcodeToDataType (Op->Asl.AmlOpcode); in XfNamespaceLocateBegin()
677 "Type=%s\n", AcpiUtGetTypeName (ObjectType))); in XfNamespaceLocateBegin()
688 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType, in XfNamespaceLocateBegin()
1198 AcpiUtGetTypeName (OpInfo->ObjectType), Op)); in XfNamespaceLocateEnd()
H A Daslprepkg.c350 Package->RetInfo3.ObjectType[i], i); in ApCheckPackage()
812 Package->RetInfo2.ObjectType[j], j); in ApCheckPackageList()
H A Daslmap.c199 return (OpInfo->ObjectType); in AslMapNamedOpcodeToDataType()
/illumos-gate/usr/src/cmd/acpi/common/
H A Dadwalk.c747 ACPI_OBJECT_TYPE ObjectType; in AcpiDmLoadDescendingOp() local
844 if (AcpiNsOpensScope (ObjectType)) in AcpiDmLoadDescendingOp()
882 ACPI_OBJECT_TYPE ObjectType; in AcpiDmXrefDescendingOp() local
916 ObjectType = ACPI_TYPE_ANY; in AcpiDmXrefDescendingOp()
1013 ObjectType2 = ObjectType; in AcpiDmXrefDescendingOp()
1046 if (AcpiNsOpensScope (ObjectType)) in AcpiDmXrefDescendingOp()
1121 ACPI_OBJECT_TYPE ObjectType; in AcpiDmProcessResourceDescriptors() local
1130 ObjectType = OpInfo->ObjectType; in AcpiDmProcessResourceDescriptors()
1131 if (AcpiNsOpensScope (ObjectType)) in AcpiDmProcessResourceDescriptors()
1173 ACPI_OBJECT_TYPE ObjectType; in AcpiDmCommonAscendingOp() local
[all …]
H A Ddmrestag.c620 if (OpInfo->ObjectType != ACPI_TYPE_INTEGER) in AcpiDmCheckResourceReference()
/illumos-gate/usr/src/common/acpica/executer/
H A Dexresop.c260 UINT8 ObjectType; in AcpiExResolveOperands() local
319 ObjectType = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type; in AcpiExResolveOperands()
326 if (ObjectType == ACPI_TYPE_LOCAL_ALIAS) in AcpiExResolveOperands()
331 ObjectType = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type; in AcpiExResolveOperands()
339 ObjectType = ObjDesc->Common.Type; in AcpiExResolveOperands()
343 if (!AcpiUtValidObjectType (ObjectType)) in AcpiExResolveOperands()
346 "Bad operand object type [0x%X]", ObjectType)); in AcpiExResolveOperands()
351 if (ObjectType == (UINT8) ACPI_TYPE_LOCAL_REFERENCE) in AcpiExResolveOperands()
446 ACPI_TYPE_LOCAL_REFERENCE, ObjectType, ObjDesc); in AcpiExResolveOperands()
/illumos-gate/usr/src/common/acpica/namespace/
H A Dnsobject.c191 ACPI_OBJECT_TYPE ObjectType = ACPI_TYPE_ANY; in AcpiNsAttachObject() local
242 ObjectType = ACPI_TYPE_ANY; in AcpiNsAttachObject()
257 ObjectType = ((ACPI_NAMESPACE_NODE *) Object)->Type; in AcpiNsAttachObject()
270 ObjectType = Type; in AcpiNsAttachObject()
306 Node->Type = (UINT8) ObjectType; in AcpiNsAttachObject()
H A Dnsprepkg.c338 Package->RetInfo3.ObjectType[i], i); in AcpiNsCheckPackage()
643 Package->RetInfo2.ObjectType[j], j); in AcpiNsCheckPackageList()
/illumos-gate/usr/src/common/acpica/hardware/
H A Dhwpci.c482 ACPI_OBJECT_TYPE ObjectType; in AcpiHwGetPciDeviceInfo() local
489 Status = AcpiGetType (PciDevice, &ObjectType); in AcpiHwGetPciDeviceInfo()
495 if (ObjectType != ACPI_TYPE_DEVICE) in AcpiHwGetPciDeviceInfo()
/illumos-gate/usr/src/common/acpica/utilities/
H A Dutcopy.c171 UINT8 ObjectType,
199 UINT8 ObjectType,
371 UINT8 ObjectType, in AcpiUtCopyIelementToEelement() argument
390 switch (ObjectType) in AcpiUtCopyIelementToEelement()
982 UINT8 ObjectType, in AcpiUtCopyIelementToIelement() argument
1000 switch (ObjectType) in AcpiUtCopyIelementToIelement()
H A Dutobject.c174 UINT8 ObjectType,
755 UINT8 ObjectType, in AcpiUtGetElementLength() argument
765 switch (ObjectType) in AcpiUtGetElementLength()
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Daclocal.h518 UINT8 ObjectType[4]; member
529 UINT8 ObjectType[2]; member
981 UINT8 ObjectType; /* Corresponding internal object type */ member
H A Dacdispat.h450 UINT8 ObjectType,
H A Dacutils.h272 UINT8 ObjectType,
/illumos-gate/usr/src/common/acpica/parser/
H A Dpsloop.c682 AcpiPsGetOpcodeInfo (WalkState->Opcode)->ObjectType)) in AcpiPsParseLoop()
/illumos-gate/usr/src/uts/intel/io/acpica/
H A Dchanges.txt2916 iASL: Disallow a method call as argument to the ObjectType ASL operator.
2919 method invocation when these are used as an argument to the ObjectType
2922 (UserTerm) for the ObjectType operator.
10825 Fixed a problem where the ObjectType operator would fail (fault) when
10903 and ObjectType operators were not treated properly. They are now treated
11360 Fixed typechecking for the ObjectType and SizeOf operators. Problem was
11443 Fixed a problem in the implementation of the SizeOf and ObjectType
11551 Allow the use of the ObjectType operator on uninitialized Locals and Args
13802 and RefOf() operators) in the ObjectType() and SizeOf() operators.