[libsecret/wip/dueno/search] password: Add _search method
- From: Daiki Ueno <dueno src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsecret/wip/dueno/search] password: Add _search method
- Date: Fri, 19 Oct 2018 06:34:25 +0000 (UTC)
commit 8709588d2eaa71df3e86237d289d24a3d8a79a09
Author: Daiki Ueno <dueno src gnome org>
Date: Fri Oct 19 08:33:49 2018 +0200
password: Add _search method
libsecret/secret-password.h | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
---
diff --git a/libsecret/secret-password.h b/libsecret/secret-password.h
index d47abb3..8d7cb44 100644
--- a/libsecret/secret-password.h
+++ b/libsecret/secret-password.h
@@ -126,6 +126,35 @@ gboolean secret_password_clearv_sync (const SecretSchema *sche
GCancellable *cancellable,
GError **error);
+void secret_password_search (const SecretSchema *schema,
+ SecretSearchFlags flags,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data,
+ ...) G_GNUC_NULL_TERMINATED;
+
+void secret_password_searchv (const SecretSchema *schema,
+ GHashTable *attributes,
+ SecretSearchFlags flags,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+
+GList * secret_password_search_sync (const SecretSchema *schema,
+ SecretSearchFlags flags,
+ GCancellable *cancellable,
+ GError **error,
+ ...) G_GNUC_NULL_TERMINATED;
+
+GList * secret_password_searchv_sync (const SecretSchema *schema,
+ GHashTable *attributes,
+ SecretSearchFlags flags,
+ GCancellable *cancellable,
+ GError **error);
+
+GList * secret_password_search_finish (GAsyncResult *result,
+ GError **error);
+
void secret_password_free (gchar *password);
void secret_password_wipe (gchar *password);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]