Home
last modified time | relevance | path

Searched refs:GetNextKey (Results 1 – 5 of 5) sorted by relevance

/haiku/headers/os/app/
H A DKeyStore.h43 status_t GetNextKey(uint32& cookie, BKey& key);
44 status_t GetNextKey(BKeyType type, BKeyPurpose purpose,
46 status_t GetNextKey(const char* keyring,
48 status_t GetNextKey(const char* keyring,
/haiku/src/kits/app/
H A DKeyStore.cpp142 BKeyStore::GetNextKey(uint32& cookie, BKey& key) in GetNextKey() function in BKeyStore
144 return GetNextKey(NULL, cookie, key); in GetNextKey()
149 BKeyStore::GetNextKey(BKeyType type, BKeyPurpose purpose, uint32& cookie, in GetNextKey() function in BKeyStore
152 return GetNextKey(NULL, type, purpose, cookie, key); in GetNextKey()
157 BKeyStore::GetNextKey(const char* keyring, uint32& cookie, BKey& key) in GetNextKey() function in BKeyStore
159 return GetNextKey(keyring, B_KEY_TYPE_ANY, B_KEY_PURPOSE_ANY, cookie, key); in GetNextKey()
164 BKeyStore::GetNextKey(const char* keyring, BKeyType type, BKeyPurpose purpose, in GetNextKey() function in BKeyStore
/haiku/docs/user/app/
H A DKeyStore.dox271 \fn status_t BKeyStore::GetNextKey(uint32& cookie, BKey& key);
275 \ref GetNextKey(const char*, BKeyType, BKeyPurpose, uint32&, BKey&) for the
284 \fn status_t BKeyStore::GetNextKey(BKeyType type, BKeyPurpose purpose,
289 \ref GetNextKey(const char*, BKeyType, BKeyPurpose, uint32&, BKey&) for the
297 \fn status_t BKeyStore::GetNextKey(const char* keyring, uint32& cookie,
302 \ref GetNextKey(const char*, BKeyType, BKeyPurpose, uint32&, BKey&) with
311 \fn status_t BKeyStore::GetNextKey(const char* keyring, BKeyType type,
H A D_app_keystore.dox141 status_t status = keyStore.GetNextKey(kLanglauferKeyringName,
/haiku/src/bin/keystore/
H A Dkeystore.cpp97 status_t result = keyStore.GetNextKey(keyring, B_KEY_TYPE_PASSWORD, in list_passwords()