Home
last modified time | relevance | path

Searched refs:pSessionId (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/drm/mediadrm/plugins/mock/
DMockDrmCryptoPlugin.cpp423 Vector<uint8_t> const *pSessionId = NULL; in setPropertyString() local
426 pSessionId = &mByteArrayProperties[index]; in setPropertyString()
435 (int)code, extra, pSessionId ? vectorToString(*pSessionId) : "{}", in setPropertyString()
438 sendEvent(eventType, extra, pSessionId, pData); in setPropertyString()
443 Vector<uint8_t> const *pSessionId = NULL; in setPropertyString() local
446 pSessionId = &mByteArrayProperties[index]; in setPropertyString()
450 expiryTimeMS, pSessionId ? vectorToString(*pSessionId) : "{}"); in setPropertyString()
452 sendExpirationUpdate(pSessionId, expiryTimeMS); in setPropertyString()
454 Vector<uint8_t> const *pSessionId = NULL; in setPropertyString() local
457 pSessionId = &mByteArrayProperties[index]; in setPropertyString()
[all …]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
DFwdLockConv.h170 FwdLockConv_Status_t FwdLockConv_OpenSession(int *pSessionId, FwdLockConv_Output_t *pOutput);
DFwdLockConv.c1111 FwdLockConv_Status_t FwdLockConv_OpenSession(int *pSessionId, FwdLockConv_Output_t *pOutput) { in FwdLockConv_OpenSession() argument
1113 if (pSessionId == NULL || pOutput == NULL) { in FwdLockConv_OpenSession()
1116 *pSessionId = FwdLockConv_AcquireSession(); in FwdLockConv_OpenSession()
1117 if (*pSessionId < 0) { in FwdLockConv_OpenSession()
1120 FwdLockConv_Session_t *pSession = sessionPtrs[*pSessionId]; in FwdLockConv_OpenSession()
1160 FwdLockConv_ReleaseSession(*pSessionId); in FwdLockConv_OpenSession()
1161 *pSessionId = -1; in FwdLockConv_OpenSession()