diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/object.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/qemu/object.h b/include/qemu/object.h index 487559c5c0..ce9e51f2ae 100644 --- a/include/qemu/object.h +++ b/include/qemu/object.h @@ -918,6 +918,20 @@ void object_property_add_str(Object *obj, const char *name, struct Error **errp); /** + * object_child_foreach: + * @obj: the object whose children will be navigated + * @fn: the iterator function to be called + * @opaque: an opaque value that will be passed to the iterator + * + * Call @fn passing each child of @obj and @opaque to it, until @fn returns + * non-zero. + * + * Returns: The last value returned by @fn, or 0 if there is no child. + */ +int object_child_foreach(Object *obj, int (*fn)(Object *child, void *opaque), + void *opaque); + +/** * container_get: * @root: root of the #path, e.g., object_get_root() * @path: path to the container |