Home | History | Annotate | Download | only in Connection_Managment

Lines Matching refs:pKey

84 TI_STATUS mainSec_setKey(struct _mainSec_t *pMainSec, TSecurityKeys *pKey);
85 TI_STATUS mainSec_removeKey(struct _mainSec_t *pMainSec, TSecurityKeys *pKey);
307 TI_STATUS mainSec_setKey(struct _mainSec_t *pMainSec, TSecurityKeys *pKey)
311 if ((pMainSec == NULL) || (pKey == NULL))
316 if (pKey->keyType != KEY_NULL)
318 TRACE6(pMainSec->hReport, REPORT_SEVERITY_INFORMATION, "MAIN_SEC_SM: setting key #%d, value = 0x%X 0x%X 0x%X 0x%X 0x%X\n", pKey->keyIndex, (TI_UINT8)pKey->encKey[0], (TI_UINT8)pKey->encKey[1], (TI_UINT8)pKey->encKey[2], (TI_UINT8)pKey->encKey[3], (TI_UINT8)pKey->encKey[4]);
320 status = pMainSec->pParent->setKey(pMainSec->pParent, pKey);
344 TI_STATUS mainSec_removeKey(struct _mainSec_t *pMainSec, TSecurityKeys *pKey)
348 if ((pMainSec == NULL) || (pKey == NULL))
353 if (pKey->keyType != KEY_NULL)
355 TRACE1(pMainSec->hReport, REPORT_SEVERITY_INFORMATION, "MAIN_SEC_SM: removing key #%d, \n", pKey->keyIndex);
357 status = pMainSec->pParent->removeKey(pMainSec->pParent, pKey);