Home
last modified time | relevance | path

Searched refs:listKey (Results 1 – 4 of 4) sorted by relevance

/developtools/hdc/src/common/
Dauth.h24 bool KeylistIncrement(list<void *> *listKey, uint8_t &authKeyIndex, void **out);
25 void FreeKey(bool publicOrPrivate, list<void *> *listKey);
Dauth.cpp459 bool KeylistIncrement(list<void *> *listKey, uint8_t &authKeyIndex, void **out) in KeylistIncrement() argument
461 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() argument
483 for (auto &&v : *listKey) { in FreeKey()
492 listKey->clear(); in FreeKey()
Ddefine_plus.h402 std::list<void *> *listKey; // rsa private or publickey list member
457 listKey = nullptr; in HdcSession()
475 if (listKey) { in ~HdcSession()
476 delete listKey; in ~HdcSession() local
477 listKey = nullptr; in ~HdcSession()
Dsession.cpp434 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()