Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dclatd_packet_converter_test.cpp174 int effectivePos = 0; variable
175 clatdPacketConverter->GetConvertedPacket(iovPackets, effectivePos);
193 int effectivePos = 0; variable
194 clatdPacketConverter->GetConvertedPacket(iovPackets, effectivePos);
212 int effectivePos = 0; variable
213 clatdPacketConverter->GetConvertedPacket(iovPackets, effectivePos);
231 int effectivePos = 0; variable
232 clatdPacketConverter->GetConvertedPacket(iovPackets, effectivePos);
250 int effectivePos = 0; variable
251 clatdPacketConverter->GetConvertedPacket(iovPackets, effectivePos);
[all …]
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/
H A Dclatd.cpp229 int effectivePos = 0; in ProcessV6Packet() local
230 converter.GetConvertedPacket(iovPackets, effectivePos); in ProcessV6Packet()
231 if (effectivePos > 0) { in ProcessV6Packet()
232 writev(tunFd_, &iovPackets[0], effectivePos); in ProcessV6Packet()
269 int effectivePos = 0; in ProcessV4Packet() local
270 converter.GetConvertedPacket(iovPackets, effectivePos); in ProcessV4Packet()
271 if (effectivePos > 0) { in ProcessV4Packet()
272 SendV6OnRawSocket(writeSock6_, iovPackets, effectivePos); in ProcessV4Packet()
313 void Clatd::SendV6OnRawSocket(int fd, std::vector<iovec> &iovPackets, int effectivePos) in SendV6OnRawSocket() argument
321 msgHeader.msg_iovlen = effectivePos; in SendV6OnRawSocket()
H A Dclatd_packet_converter.cpp77 void ClatdPacketConverter::GetConvertedPacket(std::vector<iovec> &iovPackets, int &effectivePos) in GetConvertedPacket() argument
83 effectivePos = effectivePos_; in GetConvertedPacket()
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/
H A Dclatd.h49 void SendV6OnRawSocket(int fd, std::vector<iovec> &iovPackets, int effectivePos);
H A Dclatd_packet_converter.h44 void GetConvertedPacket(std::vector<iovec> &iovPackets, int &effectivePos);