Service.searchSync

Search for items matching the attributes.

All collections are searched. The attributes should be a table of string keys and string values.

If service is null, then secret.service.Service.getSync will be called to get the default classService proxy.

If secret.types.SearchFlags.All is set in flags, then all the items matching the search will be returned. Otherwise only the first item will be returned. This is almost always the unlocked item that was most recently stored.

If secret.types.SearchFlags.Unlock is set in flags, then items will be unlocked if necessary. In either case, locked and unlocked items will match the search and be returned. If the unlock fails, the search does not fail.

If secret.types.SearchFlags.LoadSecrets is set in flags, then the items' secret values will be loaded for any unlocked items. Loaded item secret values are available via secret.item.Item.getSecret. If the load of a secret values fail, then the

This function may block indefinitely. Use the asynchronous version in user interface threads.

Parameters

schema secret.schema.Schema

the schema for the attributes

attributes string[string]

search for items matching these attributes

flags secret.types.SearchFlags

search option flags

cancellable gio.cancellable.Cancellable

optional cancellation object

Return Value

Type: secret.item.Item[]

a list of items that matched the search