Searched refs:listKey (Results 1 – 4 of 4) 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()
402 std::list<void *> *listKey; // rsa private or publickey list member457 listKey = nullptr; in HdcSession()475 if (listKey) { in ~HdcSession()476 delete listKey; in ~HdcSession() local477 listKey = nullptr; in ~HdcSession()
434 hSession->listKey = new(std::nothrow) list<void *>; in MallocSession()435 if (hSession->listKey == nullptr) { in MallocSession()555 HdcAuth::FreeKey(!hSession->serverOrDaemon, hSession->listKey); in FreeSessionFinally()