/* Valid status codes for internal UDS functions. */ enum uds_status_codes { /* Successful return */
UDS_SUCCESS = VDO_SUCCESS, /* Used as a base value for reporting internal errors */
UDS_ERROR_CODE_BASE = 1024, /* Index overflow */
UDS_OVERFLOW = UDS_ERROR_CODE_BASE, /* Invalid argument passed to internal routine */
UDS_INVALID_ARGUMENT, /* UDS data structures are in an invalid state */
UDS_BAD_STATE, /* Attempt to enter the same name into an internal structure twice */
UDS_DUPLICATE_NAME, /* An assertion failed */
UDS_ASSERTION_FAILED, /* A request has been queued for later processing (not an error) */
UDS_QUEUED, /* This error range has already been registered */
UDS_ALREADY_REGISTERED, /* Attempt to read or write data outside the valid range */
UDS_OUT_OF_RANGE, /* The index session is disabled */
UDS_DISABLED, /* The index configuration or volume format is no longer supported */
UDS_UNSUPPORTED_VERSION, /* Some index structure is corrupt */
UDS_CORRUPT_DATA, /* No index state found */
UDS_NO_INDEX, /* Attempt to access incomplete index save data */
UDS_INDEX_NOT_SAVED_CLEANLY, /* One more than the last UDS_INTERNAL error code */
UDS_ERROR_CODE_LAST, /* One more than the last error this block will ever use */
UDS_ERROR_CODE_BLOCK_END = UDS_ERROR_CODE_BASE + 440,
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.