Lines Matching refs:Info

168     ACPI_EVALUATE_INFO      *Info,
240 ACPI_EVALUATE_INFO *Info) in AcpiPsExecuteMethod() argument
256 if (!Info || !Info->Node) in AcpiPsExecuteMethod()
263 Status = AcpiDsBeginMethodExecution (Info->Node, Info->ObjDesc, NULL); in AcpiPsExecuteMethod()
272 AcpiPsUpdateParameterList (Info, REF_INCREMENT); in AcpiPsExecuteMethod()
279 Info->Node->Name.Ascii, Info->Node, Info->ObjDesc)); in AcpiPsExecuteMethod()
283 Op = AcpiPsCreateScopeOp (Info->ObjDesc->Method.AmlStart); in AcpiPsExecuteMethod()
292 Info->PassNumber = ACPI_IMODE_EXECUTE; in AcpiPsExecuteMethod()
294 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL); in AcpiPsExecuteMethod()
301 Status = AcpiDsInitAmlWalk (WalkState, Op, Info->Node, in AcpiPsExecuteMethod()
302 Info->ObjDesc->Method.AmlStart, in AcpiPsExecuteMethod()
303 Info->ObjDesc->Method.AmlLength, Info, Info->PassNumber); in AcpiPsExecuteMethod()
310 WalkState->MethodPathname = Info->FullPathname; in AcpiPsExecuteMethod()
313 if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_MODULE_LEVEL) in AcpiPsExecuteMethod()
320 if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_INTERNAL_ONLY) in AcpiPsExecuteMethod()
322 Status = Info->ObjDesc->Method.Dispatch.Implementation (WalkState); in AcpiPsExecuteMethod()
323 Info->ReturnObject = WalkState->ReturnDesc; in AcpiPsExecuteMethod()
361 AcpiPsUpdateParameterList (Info, REF_DECREMENT); in AcpiPsExecuteMethod()
374 if (Info->ReturnObject) in AcpiPsExecuteMethod()
377 Info->ReturnObject)); in AcpiPsExecuteMethod()
378 ACPI_DUMP_STACK_ENTRY (Info->ReturnObject); in AcpiPsExecuteMethod()
406 ACPI_EVALUATE_INFO *Info) in AcpiPsExecuteTable() argument
418 Op = AcpiPsCreateScopeOp (Info->ObjDesc->Method.AmlStart); in AcpiPsExecuteTable()
428 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL); in AcpiPsExecuteTable()
435 Status = AcpiDsInitAmlWalk (WalkState, Op, Info->Node, in AcpiPsExecuteTable()
436 Info->ObjDesc->Method.AmlStart, in AcpiPsExecuteTable()
437 Info->ObjDesc->Method.AmlLength, Info, Info->PassNumber); in AcpiPsExecuteTable()
443 WalkState->MethodPathname = Info->FullPathname; in AcpiPsExecuteTable()
446 if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_MODULE_LEVEL) in AcpiPsExecuteTable()
453 if (Info->Node && Info->Node != AcpiGbl_RootNode) in AcpiPsExecuteTable()
456 Info->Node, ACPI_TYPE_METHOD, WalkState); in AcpiPsExecuteTable()
500 ACPI_EVALUATE_INFO *Info, in AcpiPsUpdateParameterList() argument
506 if (Info->Parameters) in AcpiPsUpdateParameterList()
510 for (i = 0; Info->Parameters[i]; i++) in AcpiPsUpdateParameterList()
515 Info->Parameters[i], Action); in AcpiPsUpdateParameterList()