Home
last modified time | relevance | path

Searched refs:SetDataBuffer (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/telephony/sms_mms/interfaces/innerkits/
H A Dmms_attachment.h185 bool SetDataBuffer(std::unique_ptr<char[]> inBuff, uint32_t len);
/ohos5.0/base/telephony/sms_mms/test/gtest/
H A Dmms_gtest.cpp582 retBool = attachment.SetDataBuffer(nullptr, 0);
583 retBool = attachment.SetDataBuffer(nullptr, MAX_MMS_ATTACHMENT_LEN + 1);
585 retBool = attachment.SetDataBuffer(std::make_unique<char[]>(len + 1), len + 1);
587 retBool = attachment.SetDataBuffer(std::make_unique<char[]>(len - 1), len - 1);
589 retBool = attachment.SetDataBuffer(std::make_unique<char[]>(len - 1), len + 1);
/ohos5.0/base/telephony/sms_mms/frameworks/native/mms/src/
H A Dmms_attachment.cpp212 bool MmsAttachment::SetDataBuffer(std::unique_ptr<char[]> inBuff, uint32_t len) in SetDataBuffer() function in OHOS::Telephony::MmsAttachment
H A Dmms_msg.cpp353 attachment.SetDataBuffer(std::move(partBodyBuffer), partBodyLen); in GetAllAttachment()
/ohos5.0/base/telephony/sms_mms/frameworks/js/napi/src/
H A Dnapi_mms.cpp1175 itAttachment.SetDataBuffer(std::move(it->inBuff), it->inBuffLen); in SetAttachmentToCore()