What does NTSTATUS 0x401E034C (STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET) mean?

 
Previous Next
STATUS_GRAPHICS_DATASET_IS_EMPTY STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED

STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET

Dataset enumeration reached the end

This status is used when iterating a WDDM graphics dataset and the interface has no additional element to return. Datasets include VidPN topology paths, mode sets, descriptor sets, and other objects exposed through VidPN interfaces.

Treat it as an end-of-enumeration condition unless the caller expected a minimum number of elements and failed to count them. A bug often appears when code treats this value as a fatal driver error, exits early, and then later reports missing modes or paths. The real diagnostic value is the final element count and the dataset type.

What to check

  • Log how many elements were successfully read before this status appeared.
  • Separate normal iterator termination from a preceding invalid-handle or stale-topology error.
  • If at least one mode or path is required, report the missing minimum as the failure instead of the iterator status alone.

References


Looking for a different code? Search another status or error code.