Home
last modified time | relevance | path

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

/packages/modules/ImsMedia/tests/native/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/core/
DRtcpChunkTest.cpp56 RtpDt_UChar* pcBuffer = new RtpDt_UChar[chunkItem->ucLength]; in TEST_F() local
58 memcpy(pcBuffer, "sleepy@example.com", chunkItem->ucLength); in TEST_F()
60 chunkItem->pValue = pcBuffer; in TEST_F()
93 delete[] pcBuffer; in TEST_F()
111 RtpDt_UChar* pcBuffer = new RtpDt_UChar[chunkItem->ucLength]; in TEST_F() local
113 memcpy(pcBuffer, "sleepy@example.com", chunkItem->ucLength); in TEST_F()
115 chunkItem->pValue = pcBuffer; in TEST_F()
128 memcpy(pcBuffer, "google@example.com", chunkItemSec->ucLength); in TEST_F()
130 chunkItemSec->pValue = pcBuffer; in TEST_F()
154 delete[] pcBuffer; in TEST_F()
[all …]
DRtcpSdesPacketTest.cpp57 RtpDt_UChar* pcBuffer = new RtpDt_UChar[sdesItem->ucLength]; in TEST_F() local
59 memcpy(pcBuffer, "sleepy@example.com", sdesItem->ucLength); in TEST_F()
61 sdesItem->pValue = pcBuffer; in TEST_F()
100 delete[] pcBuffer; in TEST_F()
118 RtpDt_UChar* pcBuffer = new RtpDt_UChar[sdesItem->ucLength]; in TEST_F() local
120 memcpy(pcBuffer, "sleepy@example.com", sdesItem->ucLength); in TEST_F()
122 sdesItem->pValue = pcBuffer; in TEST_F()
134 memcpy(pcBuffer, "google@example.com", sdesItemSec->ucLength); in TEST_F()
136 sdesItemSec->pValue = pcBuffer; in TEST_F()
171 delete[] pcBuffer; in TEST_F()
[all …]
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/core/
DRtcpConfigInfo.cpp97 RtpDt_UChar* pcBuffer = new RtpDt_UChar[pstSdesItem->ucLength]; in addRtcpSdesItem() local
98 if (pcBuffer == nullptr) in addRtcpSdesItem()
102 memcpy(pcBuffer, pstSdesItem->pValue, pstSdesItem->ucLength); in addRtcpSdesItem()
108 m_arrSdesInfo[uiIndex].pValue = pcBuffer; in addRtcpSdesItem()