Changeset 108167 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Feb 11, 2025 9:22:02 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167482
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/acpi.h
r108150 r108167 68 68 kAcpiAstArgType_FieldAcc, 69 69 kAcpiAstArgType_FieldUpdate, 70 kAcpiAstArgType_StringLiteral, 70 71 kAcpiAstArgType_32Bit_Hack = 0x7fffffff 71 72 } RTACPIASTARGTYPE; … … 85 86 PRTACPIASTNODE pAstNd; 86 87 const char *pszNameString; 88 const char *pszStrLit; 87 89 bool f; 88 90 uint8_t u8; … … 172 174 kAcpiAstNodeOp_CondRefOf, 173 175 kAcpiAstNodeOp_IndexField, 176 kAcpiAstNodeOp_EisaId, 177 kAcpiAstNodeOp_CreateField, 178 kAcpiAstNodeOp_CreateBitField, 179 kAcpiAstNodeOp_CreateByteField, 180 kAcpiAstNodeOp_CreateWordField, 181 kAcpiAstNodeOp_CreateDWordField, 182 kAcpiAstNodeOp_CreateQWordField, 174 183 kAcpiAstNodeOp_32Bit_Hack = 0x7fffffff 175 184 } RTACPIASTNODEOP; … … 348 357 349 358 /** 359 * Adds a new namespace entry to the given name space - 64-bit value variant with format name string. 360 * 361 * @returns IPRT status code. 362 * @param pNsRoot The namespace root to add the entry to. 363 * @param u64Val The 64-bit value to associate with the entry. 364 * @param fSwitchTo Flag whether to switch the current point for the namespace to this entry. 365 * @param pszNameStringFmt An ACPI NameString (either segment or path) as a format string. 366 * @param ... The arguments for the format string. 367 */ 368 DECLHIDDEN(int) rtAcpiNsAddEntryU64F(PRTACPINSROOT pNsRoot, uint64_t u64Val, bool fSwitchTo, const char *pszNameStringFmt, ...); RT_IPRT_FORMAT_ATTR(4, 5); 369 370 371 /** 372 * Adds a new namespace entry to the given name space - 64-bit value variant with format name string. 373 * 374 * @returns IPRT status code. 375 * @param pNsRoot The namespace root to add the entry to. 376 * @param u64Val The 64-bit value to associate with the entry. 377 * @param fSwitchTo Flag whether to switch the current point for the namespace to this entry. 378 * @param pszNameStringFmt An ACPI NameString (either segment or path) as a format string. 379 * @param va The format arguments. 380 */ 381 DECLHIDDEN(int) rtAcpiNsAddEntryU64V(PRTACPINSROOT pNsRoot, uint64_t u64Val, bool fSwitchTo, const char *pszNameStringFmt, va_list va); RT_IPRT_FORMAT_ATTR(4, 0); 382 383 384 /** 350 385 * Pops the current name space entry from the stack and returns to the previous one. 351 386 *
Note:
See TracChangeset
for help on using the changeset viewer.