Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/stream_common_data_test/
H A Dstream_common_data_test.cpp64 std::shared_ptr<StreamCommonData> streamCommonData = std::make_shared<StreamCommonData>();
89 streamCommonData->~StreamCommonData();
106 std::shared_ptr<StreamCommonData> streamCommonData = std::make_shared<StreamCommonData>();
112 streamCommonData->~StreamCommonData();
118 std::shared_ptr<StreamCommonData> tmpStreamCommonData =
119 std::make_shared<StreamCommonData>(streamId, seq, *frameInfo);
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/
H A Dstream_common_data.cpp24 auto stream = std::make_unique<StreamCommonData>(info.streamId, info.seqNum, info); in MakeCommonStream()
30 StreamCommonData::StreamCommonData(uint32_t streamId, uint16_t seq, const StreamFrameInfo& frameInf… in StreamCommonData() function in Communication::SoftBus::StreamCommonData
37 int StreamCommonData::InitStreamData(std::unique_ptr<char[]> inputBuf, ssize_t bufSize, in InitStreamData()
H A Dstream_common_data.h30 class StreamCommonData : public IStream {
32 StreamCommonData() = default;
33 StreamCommonData(uint32_t streamId, uint16_t seq, const StreamFrameInfo& frameInfo);
35 ~StreamCommonData() override = default;
/ohos5.0/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/streamcommondata_fuzzer/
H A Dstreamcommondata_fuzzer.cpp60 Communication::SoftBus::StreamCommonData streamcommondata; in InitStreamDataTest()