Searched defs:keyring (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dcredentials.py42 # Use keyring, a cross platform keyring interface, as a fallback:
43 # http://pypi.python.org/pypi/keyring
44 import keyring namespace
46 keyring = None variable
53 keyring=keyring):
58 self._keyring = keyring
132 if not User().confirm("Store password in system keyring?", User.DEFAULT_NO):
/external/dbus/dbus/
H A Ddbus-keyring.c2 /* dbus-keyring.c Store secret cookies in your homedir
25 #include "dbus-keyring.h"
32 * @defgroup DBusKeyring keyring class
80 * Maximum number of keys in the keyring before
119 DBusCredentials *credentials; /**< Credentials containing user the keyring is for */
125 DBusKeyring *keyring; local
127 keyring = dbus_new0 (DBusKeyring, 1);
128 if (keyring == NULL)
131 if (!_dbus_string_init (&keyring->directory))
134 if (!_dbus_string_init (&keyring
198 _dbus_keyring_lock(DBusKeyring *keyring) argument
249 _dbus_keyring_unlock(DBusKeyring *keyring) argument
396 _dbus_keyring_reload(DBusKeyring *keyring, dbus_bool_t add_new, DBusError *error) argument
669 _dbus_keyring_ref(DBusKeyring *keyring) argument
683 _dbus_keyring_unref(DBusKeyring *keyring) argument
716 DBusKeyring *keyring; local
908 find_recent_key(DBusKeyring *keyring) argument
944 _dbus_keyring_get_best_key(DBusKeyring *keyring, DBusError *error) argument
983 _dbus_keyring_is_for_credentials(DBusKeyring *keyring, DBusCredentials *credentials) argument
1002 _dbus_keyring_get_hex_key(DBusKeyring *keyring, int key_id, DBusString *hex_key) argument
[all...]
H A Ddbus-auth.c29 #include "dbus-keyring.h"
51 * @todo the cookie keyring needs to be cached globally not just
177 DBusKeyring *keyring; /**< Keyring for cookie mechanism. */ member in struct:DBusAuth
348 auth->keyring = NULL;
460 _dbus_assert (auth->keyring != NULL);
467 if (!_dbus_keyring_get_hex_key (auth->keyring, cookie_id,
567 /* we cache the keyring for speed, so here we drop it if it's the
568 * wrong one. FIXME caching the keyring here is useless since we use
571 if (auth->keyring &&
572 !_dbus_keyring_is_for_credentials (auth->keyring,
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dnative_backend_gnome_x.cc9 #include <gnome-keyring.h>
30 // against libgnome-keyring), or call them via appropriately-typed function
31 // pointers (if we are dynamically loading libgnome-keyring).
100 void* handle = dlopen("libgnome-keyring.so.0", RTLD_NOW | RTLD_GLOBAL);
105 LOG(WARNING) << "Could not load libgnome-keyring.so.0: " << dlerror();
143 // Convert the attributes of a given keyring entry into a new PasswordForm.
262 void GetItemIds(const char* keyring);
263 void GetItemAttrs(const char* keyring, guint id);
264 void GetItemInfo(const char* keyring, guint id);
331 NULL, // Default keyring
469 GetItemIds(const char* keyring) argument
474 GetItemAttrs(const char* keyring, guint id) argument
480 GetItemInfo(const char* keyring, guint id) argument
[all...]

Completed in 43 milliseconds