Lines Matching refs:Info

169     ACPI_DB_METHOD_INFO     *Info,
174 ACPI_DB_METHOD_INFO *Info);
263 ACPI_DB_METHOD_INFO *Info, in AcpiDbExecuteMethod() argument
285 if (Info->Args && Info->Args[0]) in AcpiDbExecuteMethod()
289 for (i = 0; (Info->Args[i] && *(Info->Args[i])); i++) in AcpiDbExecuteMethod()
293 Status = AcpiDbConvertToObject (Info->Types[i], in AcpiDbExecuteMethod()
294 Info->Args[i], &Params[i]); in AcpiDbExecuteMethod()
315 Status = AcpiEvaluateObject (NULL, Info->Pathname, in AcpiDbExecuteMethod()
336 "while executing %s from AML Debugger", Info->Pathname)); in AcpiDbExecuteMethod()
367 ACPI_DB_METHOD_INFO *Info) in AcpiDbExecuteSetup() argument
377 Info->Pathname[0] = 0; in AcpiDbExecuteSetup()
378 if ((Info->Name[0] != '\\') && in AcpiDbExecuteSetup()
379 (Info->Name[0] != '/')) in AcpiDbExecuteSetup()
381 if (AcpiUtSafeStrcat (Info->Pathname, sizeof (Info->Pathname), in AcpiDbExecuteSetup()
389 if (AcpiUtSafeStrcat (Info->Pathname, sizeof (Info->Pathname), in AcpiDbExecuteSetup()
390 Info->Name)) in AcpiDbExecuteSetup()
396 AcpiDbPrepNamestring (Info->Pathname); in AcpiDbExecuteSetup()
399 AcpiOsPrintf ("Evaluating %s\n", Info->Pathname); in AcpiDbExecuteSetup()
401 if (Info->Flags & EX_SINGLE_STEP) in AcpiDbExecuteSetup()
722 ACPI_DB_METHOD_INFO *Info = Context; in AcpiDbMethodThread() local
737 (void) AcpiOsWaitSemaphore (Info->InfoGate, 1, ACPI_WAIT_FOREVER); in AcpiDbMethodThread()
739 if (Info->InitArgs) in AcpiDbMethodThread()
741 AcpiDbUint32ToHexString (Info->NumCreated, in AcpiDbMethodThread()
742 Info->IndexOfThreadStr); in AcpiDbMethodThread()
744 Info->IdOfThreadStr); in AcpiDbMethodThread()
747 if (Info->Threads && (Info->NumCreated < Info->NumThreads)) in AcpiDbMethodThread()
749 Info->Threads[Info->NumCreated++] = AcpiOsGetThreadId(); in AcpiDbMethodThread()
752 LocalInfo = *Info; in AcpiDbMethodThread()
761 (void) AcpiOsSignalSemaphore (Info->InfoGate, 1); in AcpiDbMethodThread()
763 for (i = 0; i < Info->NumLoops; i++) in AcpiDbMethodThread()
769 AcpiFormatException (Status), Info->Pathname, i); in AcpiDbMethodThread()
786 Info->Pathname, ReturnObj.Pointer, in AcpiDbMethodThread()
796 (void) AcpiOsWaitSemaphore (Info->ThreadCompleteGate, in AcpiDbMethodThread()
798 Info->NumCompleted++; in AcpiDbMethodThread()
800 if (Info->NumCompleted == Info->NumThreads) in AcpiDbMethodThread()
806 (void) AcpiOsSignalSemaphore (Info->ThreadCompleteGate, 1); in AcpiDbMethodThread()
810 Status = AcpiOsSignalSemaphore (Info->MainThreadGate, 1); in AcpiDbMethodThread()
837 ACPI_DB_METHOD_INFO *Info = Context; in AcpiDbSingleExecutionThread() local
844 Status = AcpiDbExecuteMethod (Info, &ReturnObj); in AcpiDbSingleExecutionThread()
848 AcpiFormatException (Status), Info->Pathname); in AcpiDbSingleExecutionThread()