Lines Matching refs:ObjDesc

167  * PARAMETERS:  ObjDesc             - The named field to read
179 ACPI_OPERAND_OBJECT *ObjDesc,
185 ACPI_FUNCTION_TRACE_PTR (ExReadGpio, ObjDesc);
196 ObjDesc->Field.PinNumberIndex, ObjDesc->Field.BitLength));
200 AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
205 ObjDesc, 0, (UINT64 *) Buffer, ACPI_READ);
207 AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
218 * ObjDesc - The named field
231 ACPI_OPERAND_OBJECT *ObjDesc,
238 ACPI_FUNCTION_TRACE_PTR (ExWriteGpio, ObjDesc);
258 ObjDesc->Field.PinNumberIndex, ObjDesc->Field.BitLength));
264 AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
269 ObjDesc, 0, (UINT64 *) Buffer, ACPI_WRITE);
270 AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
279 * PARAMETERS: ObjDesc - The named field to read
291 ACPI_OPERAND_OBJECT *ObjDesc,
301 ACPI_FUNCTION_TRACE_PTR (ExReadSerialBus, ObjDesc);
316 switch (ObjDesc->Field.RegionObj->Region.SpaceId)
321 Function = ACPI_READ | (ObjDesc->Field.Attribute << 16);
332 AccessorType = ObjDesc->Field.Attribute;
376 AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
380 Status = AcpiExAccessRegion (ObjDesc, 0,
382 AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
394 * ObjDesc - The named field
407 ACPI_OPERAND_OBJECT *ObjDesc,
419 ACPI_FUNCTION_TRACE_PTR (ExWriteSerialBus, ObjDesc);
449 switch (ObjDesc->Field.RegionObj->Region.SpaceId)
454 Function = ACPI_WRITE | (ObjDesc->Field.Attribute << 16);
465 AccessorType = ObjDesc->Field.Attribute;
513 AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
520 ObjDesc, 0, (UINT64 *) Buffer, Function);
521 AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);