lib: add some missing (out) annotations
Closes: #1861 Approved by: cgwalters
This commit is contained in:
parent
0872708ea1
commit
aa5df8995e
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue