HomeSort by: relevance | last modified time | path
    Searched refs:Info (Results 1 - 25 of 130) sorted by relevancy

1 2 3 4 5 6

  /src/sys/external/bsd/acpica/dist/namespace/
nseval.c 59 * PARAMETERS: Info - Evaluation info block, contains these fields
83 ACPI_EVALUATE_INFO *Info)
91 if (!Info)
96 if (!Info->Node)
106 Status = AcpiNsGetNode (Info->PrefixNode, Info->RelativePathname,
107 ACPI_NS_NO_UPSEARCH, &Info->Node);
118 if (AcpiNsGetType (Info->Node) == ACPI_TYPE_LOCAL_METHOD_ALIAS)
120 Info->Node = ACPI_CAST_PTR
    [all...]
nspredef.c 82 ACPI_EVALUATE_INFO *Info,
95 * Info - Method execution information block
110 ACPI_EVALUATE_INFO *Info,
122 Predefined = Info->Predefined;
152 (!Predefined->Info.ExpectedBtypes) ||
153 (Predefined->Info.ExpectedBtypes == ACPI_RTYPE_ALL))
162 Status = AcpiNsCheckObjectType (Info, ReturnObjectPtr,
163 Predefined->Info.ExpectedBtypes, ACPI_NOT_PACKAGE_ELEMENT);
185 Info->ParentPackage = *ReturnObjectPtr;
186 Status = AcpiNsCheckPackage (Info, ReturnObjectPtr)
    [all...]
nsxfeval.c 60 ACPI_EVALUATE_INFO *Info);
224 ACPI_EVALUATE_INFO *Info;
234 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
235 if (!Info)
242 Info->PrefixNode = AcpiNsValidateHandle (Handle);
243 if (!Info->PrefixNode)
262 Info->PrefixNode = NULL;
286 Info->RelativePathname = __UNCONST(Pathname);
294 Info->ParamCount = (UINT16) ExternalParams->Count;
298 if (Info->ParamCount > ACPI_METHOD_NUM_ARGS
    [all...]
nsinit.c 96 ACPI_INIT_WALK_INFO Info;
109 /* Clear the info block */
111 memset (&Info, 0, sizeof (ACPI_INIT_WALK_INFO));
121 ACPI_UINT32_MAX, AcpiNsInitOneObject, NULL, &Info, NULL);
129 Info.ObjectCount,
130 Info.ObjectCount));
134 Info.MethodCount, Info.OpRegionCount));
161 ACPI_DEVICE_WALK_INFO Info;
175 Info.DeviceCount = 0
    [all...]
nsarguments.c 58 * PARAMETERS: Info - Method execution information block
69 ACPI_EVALUATE_INFO *Info)
85 if (!Info->Predefined || (Info->Node->Flags & ANOBJ_EVALUATED))
90 ArgTypeList = Info->Predefined->Info.ArgumentList;
95 for (i = 0; ((i < ArgCount) && (i < Info->ParamCount)); i++)
98 UserArgType = Info->Parameters[i]->Common.Type;
104 ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname, ACPI_WARN_ALWAYS,
112 Info->Node->Flags |= ANOBJ_EVALUATED
    [all...]
nsprepkg.c 58 ACPI_EVALUATE_INFO *Info,
65 ACPI_EVALUATE_INFO *Info,
75 ACPI_EVALUATE_INFO *Info,
84 * PARAMETERS: Info - Method execution information block
97 ACPI_EVALUATE_INFO *Info,
112 /* The package info for this name is in the next table entry */
114 Package = Info->Predefined + 1;
118 Info->FullPathname, Package->RetInfo.Type,
125 AcpiNsRemoveNullElements (Info, Package->RetInfo.Type, ReturnObject);
143 ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname, Info->NodeFlags
    [all...]
nsrepair2.c 59 ACPI_EVALUATE_INFO *Info,
78 ACPI_EVALUATE_INFO *Info,
83 ACPI_EVALUATE_INFO *Info,
88 ACPI_EVALUATE_INFO *Info,
93 ACPI_EVALUATE_INFO *Info,
98 ACPI_EVALUATE_INFO *Info,
103 ACPI_EVALUATE_INFO *Info,
108 ACPI_EVALUATE_INFO *Info,
113 ACPI_EVALUATE_INFO *Info,
118 ACPI_EVALUATE_INFO *Info,
    [all...]
nsparse.c 88 ACPI_EVALUATE_INFO *Info = NULL;
129 Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
130 if (!Info)
145 Info->PassNumber = ACPI_IMODE_EXECUTE;
146 Info->Node = StartNode;
147 Info->ObjDesc = MethodObj;
148 Info->NodeFlags = Info->Node->Flags;
149 Info->FullPathname = AcpiNsGetNormalizedPathname (Info->Node, TRUE)
    [all...]
nsrepair.c 137 * PARAMETERS: Info - Method execution information block
154 ACPI_EVALUATE_INFO *Info,
172 Predefined = AcpiNsMatchSimpleRepair (Info->Node,
173 Info->ReturnBtype, PackageIndex);
178 ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname,
182 Status = Predefined->ObjectConverter (Info->Node, ReturnObject,
202 if (Info->ReturnBtype & ExpectedBtypes)
228 ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname,
231 Status = AcpiNsRepairNullElement (Info, ExpectedBtypes,
241 ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
ahids.c 228 * RETURN: ID info struct. NULL if HardwareId is not found
238 const AH_DEVICE_ID *Info;
241 for (Info = AslDeviceIds; Info->Name; Info++)
243 if (!strcmp (HardwareId, Info->Name))
245 return (Info);
ahuuids.c 134 const AH_UUID *Info;
140 for (Info = Gbl_AcpiUuids; Info->Description; Info++)
144 if (!Info->String)
149 AcpiUtConvertStringToUuid (Info->String, UuidBuffer);
153 return (Info->Description);
ahtable.c 73 const AH_TABLE *Info;
76 for (Info = AcpiGbl_SupportedTables; Info->Signature; Info++)
78 if (ACPI_COMPARE_NAMESEG (Signature, Info->Signature))
80 return (Info);
  /src/sys/external/bsd/acpica/dist/compiler/
aslmapenter.c 80 * Creates new GPIO info blocks, one for each pin defined by the
93 ACPI_GPIO_INFO *Info;
104 /* Create an info block for each pin defined in the descriptor */
108 Info = MpCreateGpioInfo (PinList[i], DeviceName);
110 Info->Op = Op;
111 Info->DeviceName = DeviceName;
112 Info->PinCount = PinCount;
113 Info->PinIndex = i;
114 Info->PinNumber = PinList[i];
115 Info->Type = Resource->Gpio.ConnectionType
    [all...]
aslmapoutput.c 82 ACPI_GPIO_INFO *Info);
180 * DESCRIPTION: Emit the info about all GPIO devices found during the
189 ACPI_GPIO_INFO *Info;
202 Info = AslGbl_GpioList;
203 while (Info)
205 HidString = MpGetHidViaNamestring (Info->DeviceName);
207 /* Print header info for the controller itself */
210 strcmp (PrevDeviceName, Info->DeviceName))
214 HidString, Info->DeviceName);
228 PrevDeviceName = Info->DeviceName
    [all...]
aslresource.c 647 ASL_RESOURCE_INFO *Info,
655 switch (Info->DescriptorTypeOp->Asl.ParseOpcode)
660 Rnode = RsDoClockInputDescriptor(Info);
665 Rnode = RsDoDmaDescriptor (Info);
670 Rnode = RsDoFixedDmaDescriptor (Info);
675 Rnode = RsDoDwordIoDescriptor (Info);
680 Rnode = RsDoDwordMemoryDescriptor (Info);
685 Rnode = RsDoDwordPccDescriptor (Info);
690 Rnode = RsDoDwordSpaceDescriptor (Info);
700 Info->DescriptorTypeOp, NULL)
    [all...]
aslpredef.c 75 * MethodInfo - Saved info about this method
135 RequiredArgCount = METHOD_GET_ARG_COUNT (ThisName->Info.ArgumentList);
140 ThisName->Info.Name, RequiredArgCount);
148 !(ThisName->Info.ArgumentList & ARG_COUNT_IS_MINIMUM))
160 ThisName->Info.ExpectedBtypes)
163 ThisName->Info.ExpectedBtypes);
166 AslGbl_StringBuffer, ThisName->Info.Name);
183 * MethodInfo - Saved info about this method
230 * MethodInfo - Saved info about this method
284 if (!ThisName->Info.ExpectedBtypes
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsinit.c 71 * Context - Points to a init info struct
92 ACPI_INIT_WALK_INFO *Info = (ACPI_INIT_WALK_INFO *) Context;
105 if (Node->OwnerId != Info->OwnerId)
110 Info->ObjectCount++;
126 Info->OpRegionCount++;
138 Info->MethodCount++;
149 Info->SerialMethodCount++;
162 Info->SerialMethodCount++;
163 Info->SerializedMethodCount++;
168 Info->NonSerialMethodCount++
    [all...]
dsfield.c 76 ACPI_CREATE_FIELD_INFO *Info,
312 * PARAMETERS: Info - CreateField info structure
325 ACPI_CREATE_FIELD_INFO *Info,
340 ACPI_FUNCTION_TRACE_PTR (DsGetFieldNames, Info);
345 Info->FieldBitPosition = 0;
362 Position = (UINT64) Info->FieldBitPosition +
372 Info->FieldBitPosition = (UINT32) Position;
390 Info->FieldFlags = (UINT8)
391 ((Info->FieldFlags & ~(AML_FIELD_ACCESS_TYPE_MASK))
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahdecode.c 160 const AH_DIRECTIVE_INFO *Info;
165 for (Info = Gbl_PreprocessorDirectives; Info->Name; Info++)
167 printf (" %-36s : %s\n", Info->Name, Info->Description);
342 const AH_PREDEFINED_NAME *Info;
350 for (Info = AslPredefinedInfo; Info->Name; Info++
    [all...]
  /src/sys/external/bsd/acpica/dist/parser/
psxface.c 60 ACPI_EVALUATE_INFO *Info,
111 * PARAMETERS: Info - Method info block, contains:
132 ACPI_EVALUATE_INFO *Info)
146 /* Validate the Info and method Node */
148 if (!Info || !Info->Node)
155 Status = AcpiDsBeginMethodExecution (Info->Node, Info->ObjDesc, NULL);
164 AcpiPsUpdateParameterList (Info, REF_INCREMENT)
    [all...]
  /src/sys/external/bsd/acpica/dist/events/
evmisc.c 117 ACPI_GENERIC_STATE *Info;
166 /* Setup notify info and schedule the notify dispatcher */
168 Info = AcpiUtCreateGenericState ();
169 if (!Info)
174 Info->Common.DescriptorType = ACPI_DESC_TYPE_STATE_NOTIFY;
176 Info->Notify.Node = Node;
177 Info->Notify.Value = (UINT16) NotifyValue;
178 Info->Notify.HandlerListId = HandlerListId;
179 Info->Notify.HandlerListHead = HandlerListHead;
180 Info->Notify.Global = &AcpiGbl_GlobalNotify[HandlerListId]
    [all...]
  /src/sys/external/bsd/acpica/dist/resources/
rsmisc.c 67 * Info - Pointer to appropriate conversion table
80 ACPI_RSCONVERT_INFO *Info)
95 if (!Info)
117 Count = INIT_TABLE_LENGTH (Info);
126 Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset);
127 Destination = ACPI_ADD_PTR (void, Resource, Info->ResourceOffset);
129 switch (Info->Opcode)
135 memset (Resource, 0, INIT_RESOURCE_LENGTH (Info));
136 Resource->Type = INIT_RESOURCE_TYPE (Info);
137 Resource->Length = INIT_RESOURCE_LENGTH (Info);
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
axutils.c 458 AX_TABLE_INFO *Info;
461 Info = Gbl_TableListHead;
462 while (Info)
464 if (*(UINT32 *) Signature == Info->Signature)
469 Info = Info->Next;
472 if (!Info)
474 /* Signature not found, create new table info block */
476 Info = malloc (sizeof (AX_TABLE_INFO));
477 if (!Info)
    [all...]
  /src/sys/external/bsd/acpica/dist/utilities/
utpredef.c 76 * cases where a package info entry follows a method name that
88 * (next entry contains the package info)
90 if ((ThisName->Info.ExpectedBtypes & ACPI_RTYPE_PACKAGE) &&
91 (ThisName->Info.ExpectedBtypes != ACPI_RTYPE_ALL))
127 /* Search info table for a predefined method/object name */
130 while (ThisName->Info.Name[0])
132 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name))
264 /* Search info table for a predefined method/object name */
267 while (ThisName->Info.Name[0])
269 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name)
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exprep.c 428 * PARAMETERS: Info - Contains all field creation info
439 ACPI_CREATE_FIELD_INFO *Info)
453 if (Info->FieldType != ACPI_TYPE_LOCAL_INDEX_FIELD)
455 if (!Info->RegionNode)
461 Type = AcpiNsGetType (Info->RegionNode);
473 ObjDesc = AcpiUtCreateInternalObject (Info->FieldType);
481 ObjDesc->CommonField.Node = Info->FieldNode;
483 Info->FieldFlags, Info->Attribute
    [all...]

Completed in 43 milliseconds

1 2 3 4 5 6