Enum uacpi_iteration_decision

enum uacpi_iteration_decision {
  UACPI_ITERATION_DECISION_CONTINUE,
  UACPI_ITERATION_DECISION_BREAK,
  UACPI_ITERATION_DECISION_NEXT_PEER
};

Values

UACPI_ITERATION_DECISION_CONTINUE
UACPI_ITERATION_DECISION_BREAK
UACPI_ITERATION_DECISION_NEXT_PEER
Ignore all of the children of the current node and proceed directly to
its peer nodes. Only applicable for API that interacts with the AML namespace such as uacpi_namespace_for_each_child, uacpi_find_deivces, etc.