Lines Matching refs:Info

168     ACPI_DB_METHOD_INFO     *Info,
173 ACPI_DB_METHOD_INFO *Info);
262 ACPI_DB_METHOD_INFO *Info, in AcpiDbExecuteMethod() argument
284 if (Info->Args && Info->Args[0]) in AcpiDbExecuteMethod()
288 for (i = 0; (Info->Args[i] && *(Info->Args[i])); i++) in AcpiDbExecuteMethod()
292 Status = AcpiDbConvertToObject (Info->Types[i], in AcpiDbExecuteMethod()
293 Info->Args[i], &Params[i]); in AcpiDbExecuteMethod()
314 Status = AcpiEvaluateObject (NULL, Info->Pathname, in AcpiDbExecuteMethod()
335 "while executing %s from AML Debugger", Info->Pathname)); in AcpiDbExecuteMethod()
366 ACPI_DB_METHOD_INFO *Info) in AcpiDbExecuteSetup() argument
376 Info->Pathname[0] = 0; in AcpiDbExecuteSetup()
377 if ((Info->Name[0] != '\\') && in AcpiDbExecuteSetup()
378 (Info->Name[0] != '/')) in AcpiDbExecuteSetup()
380 if (AcpiUtSafeStrcat (Info->Pathname, sizeof (Info->Pathname), in AcpiDbExecuteSetup()
388 if (AcpiUtSafeStrcat (Info->Pathname, sizeof (Info->Pathname), in AcpiDbExecuteSetup()
389 Info->Name)) in AcpiDbExecuteSetup()
395 AcpiDbPrepNamestring (Info->Pathname); in AcpiDbExecuteSetup()
398 AcpiOsPrintf ("Evaluating %s\n", Info->Pathname); in AcpiDbExecuteSetup()
400 if (Info->Flags & EX_SINGLE_STEP) in AcpiDbExecuteSetup()
721 ACPI_DB_METHOD_INFO *Info = Context; in AcpiDbMethodThread() local
736 (void) AcpiOsWaitSemaphore (Info->InfoGate, 1, ACPI_WAIT_FOREVER); in AcpiDbMethodThread()
738 if (Info->InitArgs) in AcpiDbMethodThread()
740 AcpiDbUint32ToHexString (Info->NumCreated, in AcpiDbMethodThread()
741 Info->IndexOfThreadStr); in AcpiDbMethodThread()
743 Info->IdOfThreadStr); in AcpiDbMethodThread()
746 if (Info->Threads && (Info->NumCreated < Info->NumThreads)) in AcpiDbMethodThread()
748 Info->Threads[Info->NumCreated++] = AcpiOsGetThreadId(); in AcpiDbMethodThread()
751 LocalInfo = *Info; in AcpiDbMethodThread()
760 (void) AcpiOsSignalSemaphore (Info->InfoGate, 1); in AcpiDbMethodThread()
762 for (i = 0; i < Info->NumLoops; i++) in AcpiDbMethodThread()
768 AcpiFormatException (Status), Info->Pathname, i); in AcpiDbMethodThread()
785 Info->Pathname, ReturnObj.Pointer, in AcpiDbMethodThread()
795 (void) AcpiOsWaitSemaphore (Info->ThreadCompleteGate, in AcpiDbMethodThread()
797 Info->NumCompleted++; in AcpiDbMethodThread()
799 if (Info->NumCompleted == Info->NumThreads) in AcpiDbMethodThread()
805 (void) AcpiOsSignalSemaphore (Info->ThreadCompleteGate, 1); in AcpiDbMethodThread()
809 Status = AcpiOsSignalSemaphore (Info->MainThreadGate, 1); in AcpiDbMethodThread()
836 ACPI_DB_METHOD_INFO *Info = Context; in AcpiDbSingleExecutionThread() local
843 Status = AcpiDbExecuteMethod (Info, &ReturnObj); in AcpiDbSingleExecutionThread()
847 AcpiFormatException (Status), Info->Pathname); in AcpiDbSingleExecutionThread()