#include "acpi.h"
#include "accommon.h"
#include "acnamesp.h"
Go to the source code of this file.
|
void ACPI_INTERNAL_VAR_XFACE | AcpiUtPredefinedWarning (const char *ModuleName, UINT32 LineNumber, char *Pathname, UINT16 NodeFlags, const char *Format,...) |
|
void ACPI_INTERNAL_VAR_XFACE | AcpiUtPredefinedInfo (const char *ModuleName, UINT32 LineNumber, char *Pathname, UINT16 NodeFlags, const char *Format,...) |
|
void ACPI_INTERNAL_VAR_XFACE | AcpiUtPredefinedBiosError (const char *ModuleName, UINT32 LineNumber, char *Pathname, UINT16 NodeFlags, const char *Format,...) |
|
void | AcpiUtPrefixedNamespaceError (const char *ModuleName, UINT32 LineNumber, ACPI_GENERIC_STATE *PrefixScope, const char *InternalPath, ACPI_STATUS LookupStatus) |
|
void | AcpiUtMethodError (const char *ModuleName, UINT32 LineNumber, const char *Message, ACPI_NAMESPACE_NODE *PrefixNode, const char *Path, ACPI_STATUS MethodStatus) |
|
◆ _COMPONENT
◆ AcpiUtMethodError()
Definition at line 369 of file uterror.c.
376{
379
380
383
385 {
389 {
391 }
392 }
393
397
400}
PRTL_UNICODE_STRING_BUFFER Path
ACPI_STATUS AcpiNsGetNode(ACPI_NAMESPACE_NODE *PrefixNode, const char *ExternalPathname, UINT32 Flags, ACPI_NAMESPACE_NODE **OutNode)
#define ACPI_NS_NO_UPSEARCH
void AcpiNsPrintNodePathname(ACPI_NAMESPACE_NODE *Node, const char *Msg)
void ACPI_INTERNAL_VAR_XFACE AcpiOsPrintf(const char *Format,...)
#define ACPI_MSG_REDIRECT_BEGIN
#define ACPI_MSG_REDIRECT_END
static const WCHAR Message[]
const char * AcpiFormatException(ACPI_STATUS Status)
◆ AcpiUtPredefinedBiosError()
Definition at line 177 of file uterror.c.
184{
186
187
188
189
190
191
193 {
194 return;
195 }
196
198
203}
void AcpiOsVprintf(const char *Format, va_list Args)
ACPI_PHYSICAL_ADDRESS ACPI_SIZE BOOLEAN Warn UINT32 *TableIdx UINT32 ACPI_TABLE_HEADER *OutTableHeader ACPI_TABLE_HEADER **OutTable ACPI_HANDLE UINT32 ACPI_WALK_CALLBACK ACPI_WALK_CALLBACK void void **ReturnValue UINT32 ACPI_BUFFER *RetPathPtr ACPI_OBJECT_HANDLER void *Data ACPI_OBJECT_HANDLER void **Data ACPI_STRING Pathname
#define ACPI_MSG_BIOS_ERROR
◆ AcpiUtPredefinedInfo()
Definition at line 128 of file uterror.c.
135{
137
138
139
140
141
142
144 {
145 return;
146 }
147
149
154}
◆ AcpiUtPredefinedWarning()
Definition at line 79 of file uterror.c.
86{
88
89
90
91
92
93
95 {
96 return;
97 }
98
100
105}
◆ AcpiUtPrefixedNamespaceError()
Definition at line 227 of file uterror.c.
233{
234 char *FullPath;
236
237
238
239
240
241
242
243 switch (LookupStatus)
244 {
246
248 Message =
"Failure creating named object";
249 break;
250
252
254 Message =
"Could not resolve symbol";
255 break;
256
257 default:
258
260 Message =
"Failure resolving symbol";
261 break;
262 }
263
264
265
267
269 FullPath ? FullPath : "Could not get pathname",
271
272 if (FullPath)
273 {
275 }
276
278}
#define AE_ALREADY_EXISTS
char * AcpiNsBuildPrefixedPathname(ACPI_GENERIC_STATE *PrefixScope, const char *InternalPath)