Searched refs:listKey (Results 1 – 5 of 5) sorted by relevance
24 bool KeylistIncrement(list<void *> *listKey, uint8_t &authKeyIndex, void **out);25 void FreeKey(bool publicOrPrivate, list<void *> *listKey);
459 bool KeylistIncrement(list<void *> *listKey, uint8_t &authKeyIndex, void **out) in KeylistIncrement() argument461 if (!listKey->size()) { in KeylistIncrement()463 LoadHostUserKey(listKey); in KeylistIncrement()465 LoadDaemonKey(listKey); in KeylistIncrement()468 if (authKeyIndex == listKey->size()) { in KeylistIncrement()472 auto listIndex = listKey->begin(); in KeylistIncrement()481 void FreeKey(bool publicOrPrivate, list<void *> *listKey) in FreeKey() argument483 for (auto &&v : *listKey) { in FreeKey()492 listKey->clear(); in FreeKey()
372 std::list<void *> *listKey; // rsa private or publickey list member427 listKey = nullptr; in HdcSession()442 if (listKey) { in ~HdcSession()443 delete listKey; in ~HdcSession() local444 listKey = nullptr; in ~HdcSession()
422 hSession->listKey = new(std::nothrow) list<void *>; in MallocSession()423 if (hSession->listKey == nullptr) { in MallocSession()530 HdcAuth::FreeKey(!hSession->serverOrDaemon, hSession->listKey); in FreeSessionFinally()
431 …bool retChildForToken = HdcAuth::KeylistIncrement(hSession->listKey, hSession->authKeyIndex, &ptr); in HandServerAuth()