VirtualBox

Changeset 100009 in vbox for trunk/include/iprt


Ignore:
Timestamp:
May 30, 2023 9:55:31 AM (22 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
157677
Message:

Runtime/common/misc/fdt.cpp: Implement loading the blocks from the I/O stream, bugref:10401

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/err.h

    r100006 r100009  
    28212821/** The DTB being parsed is malformed. */
    28222822#define VERR_FDT_DTB_MALFORMED                                  (-27000)
     2823/** The DTB being parsed has an invalid header magic. */
     2824#define VERR_FDT_DTB_HDR_MAGIC_INVALID                          (-27001)
     2825/** The DTB being parsed has a version set which is not supported. */
     2826#define VERR_FDT_DTB_HDR_VERSION_NOT_SUPPORTED                  (-27002)
     2827/** The DTB being parsed has an invalid last compatible version set. */
     2828#define VERR_FDT_DTB_HDR_LAST_COMPAT_VERSION_INVALID            (-27003)
     2829/** The DTB being parsed has an invalid size set in the header compared to the actual size. */
     2830#define VERR_FDT_DTB_HDR_SIZE_INVALID                           (-27004)
     2831/** The DTB being parsed has an invalid memory reservation block offset. */
     2832#define VERR_FDT_DTB_HDR_MEM_RSV_BLOCK_OFF_INVALID              (-27005)
     2833/** The DTB being parsed has an invalid struct block offset. */
     2834#define VERR_FDT_DTB_HDR_STRUCT_BLOCK_OFF_INVALID               (-27006)
     2835/** The DTB being parsed has an invalid strings block offset. */
     2836#define VERR_FDT_DTB_HDR_STRINGS_BLOCK_OFF_INVALID              (-27007)
     2837/** The DTB being parsed has no terminating memory reservation block entry before the start of the structs block. */
     2838#define VERR_FDT_DTB_MEM_RSV_BLOCK_TERMINATOR_MISSING           (-27008)
     2839/** The DTB being parsed has an invalid strings block offset. */
     2840#define VERR_FDT_DTB_STRINGS_BLOCK_NOT_TERMINATED               (-27009)
    28232841/** @} */
    28242842
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette