Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_wrapper_test/
H A Dwrapper_decoder_test.cpp64 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
73 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
82 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
91 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
99 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
135 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
156 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
207 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
286 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
344 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(msg);
[all …]
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/wrapper/
H A Dwrapper_decoder.h28 class NET_SYMBOL_VISIBLE WrapperDecoder {
30 WrapperDecoder(std::shared_ptr<NetsysEventMessage> message);
31 WrapperDecoder() = delete;
32 ~WrapperDecoder() = default;
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/wrapper/
H A Dwrapper_decoder.cpp174 WrapperDecoder::WrapperDecoder(std::shared_ptr<NetsysEventMessage> message) : message_(message) {} in WrapperDecoder() function in OHOS::nmd::WrapperDecoder
176 bool WrapperDecoder::DecodeAscii(const char *buffer, int32_t buffSize) in DecodeAscii()
214 bool WrapperDecoder::PushAsciiMessage(const std::vector<std::string> &recvmsg) in PushAsciiMessage()
242 bool WrapperDecoder::DecodeBinary(const char *buffer, int32_t buffSize) in DecodeBinary()
280 bool WrapperDecoder::InterpreteInfoMsg(const nlmsghdr *hdrMsg) in InterpreteInfoMsg()
312 bool WrapperDecoder::InterpreteUlogMsg(const nlmsghdr *hdrMsg) in InterpreteUlogMsg()
327 bool WrapperDecoder::InterpreteAddressMsg(const nlmsghdr *hdrMsg) in InterpreteAddressMsg()
381 bool WrapperDecoder::InterpreteIFaceAddr(ifaddrmsg *ifAddr, char *addrStr, socklen_t sockLen, in InterpreteIFaceAddr()
441 bool WrapperDecoder::InterpreteRtMsg(const nlmsghdr *hdrMsg) in InterpreteRtMsg()
489 rtmsg *WrapperDecoder::CheckRtParam(const nlmsghdr *hdrMsg, uint8_t type) in CheckRtParam()
[all …]
H A Ddata_receiver.cpp61 std::unique_ptr<WrapperDecoder> decoder = std::make_unique<WrapperDecoder>(message); in StartReceive()