diff --git a/src/libostree/ostree-mutable-tree.c b/src/libostree/ostree-mutable-tree.c index a213fd4a..8509d156 100644 --- a/src/libostree/ostree-mutable-tree.c +++ b/src/libostree/ostree-mutable-tree.c @@ -401,6 +401,14 @@ ostree_mutable_tree_ensure_dir (OstreeMutableTree *self, return TRUE; } +/** + * ostree_mutable_tree_lookup: + * @self: Tree + * @name: name + * @out_file_checksum: (out) (transfer full): checksum + * @out_subdir: (out) (transfer full): subdirectory + * @error: a #GError + */ gboolean ostree_mutable_tree_lookup (OstreeMutableTree *self, const char *name, diff --git a/src/libostree/ostree-repo-file.c b/src/libostree/ostree-repo-file.c index 740b4624..7ad11529 100644 --- a/src/libostree/ostree-repo-file.c +++ b/src/libostree/ostree-repo-file.c @@ -292,6 +292,13 @@ ostree_repo_file_ensure_resolved (OstreeRepoFile *self, return TRUE; } +/** + * ostree_repo_file_get_xattrs: + * @self: #OstreeRepoFile + * @out_xattrs: (out) (optional): the extended attributes + * @cancellable: Cancellable + * @error: Error + */ gboolean ostree_repo_file_get_xattrs (OstreeRepoFile *self, GVariant **out_xattrs, @@ -724,6 +731,13 @@ query_child_info_dir (OstreeRepo *repo, return TRUE; } +/** + * ostree_repo_file_tree_find_child: + * @self: #OstreeRepoFile + * @name: name of the child + * @is_dir: (out caller-allocates): + * @out_container: (out): + */ int ostree_repo_file_tree_find_child (OstreeRepoFile *self, const char *name, @@ -769,6 +783,16 @@ ostree_repo_file_tree_find_child (OstreeRepoFile *self, return i; } +/** + * ostree_repo_file_tree_query_child: + * @self: #OstreeRepoFile + * @n: + * @attributes: + * @flags: + * @out_info: (out): + * @cancellable: Cancellable + * @error: Error + */ gboolean ostree_repo_file_tree_query_child (OstreeRepoFile *self, int n, diff --git a/src/libostree/ostree-repo.c b/src/libostree/ostree-repo.c index 3238e429..da128c6a 100644 --- a/src/libostree/ostree-repo.c +++ b/src/libostree/ostree-repo.c @@ -2048,9 +2048,9 @@ ostree_repo_remote_get_gpg_verify_summary (OstreeRepo *self, * ostree_repo_remote_gpg_import: * @self: Self * @name: name of a remote - * @source_stream: (allow-none): a #GInputStream, or %NULL - * @key_ids: (array zero-terminated=1) (element-type utf8) (allow-none): a %NULL-terminated array of GPG key IDs, or %NULL - * @out_imported: (allow-none): return location for the number of imported + * @source_stream: (nullable): a #GInputStream, or %NULL + * @key_ids: (array zero-terminated=1) (element-type utf8) (nullable): a %NULL-terminated array of GPG key IDs, or %NULL + * @out_imported: (out) (optional): return location for the number of imported * keys, or %NULL * @cancellable: a #GCancellable * @error: a #GError @@ -2385,6 +2385,12 @@ ostree_repo_mode_to_string (OstreeRepoMode mode, return TRUE; } +/** + * ostree_repo_mode_from_string: + * @mode: a repo mode as a string + * @out_mode: (out): the corresponding #OstreeRepoMode + * @error: a #GError if the string is not a valid mode + */ gboolean ostree_repo_mode_from_string (const char *mode, OstreeRepoMode *out_mode,