Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/
H A Dprotocol_proto.cpp315 uint16_t fragCount = ((remainder == 0) ? quotient : (quotient + 1)); in SplitFrameIntoPacketsIfNeed() local
325 uint16_t fragCount = inResult.GetFragCount(); in AnalyzeSplitStructure() local
336 …if (fragCount == 0 || fragCount < MIN_FRAGMENT_COUNT || fragCount > lengthBeSplit || fragNo >= fra… in AnalyzeSplitStructure()
342 uint32_t quotient = lengthBeSplit / fragCount; in AnalyzeSplitStructure()
343 uint16_t remainder = lengthBeSplit % fragCount; in AnalyzeSplitStructure()
578 NetToHost(phyOpt->fragCount), NetToHost(phyOpt->fragNo)); in DisplayPacketInformation()
824 inResult.SetFragCount(phyOptHeader.fragCount); in ParseCommPhyOptHeader()
956 if (fragmentInfo.fragCount < MIN_FRAGMENT_COUNT) { in FrameFragmentation()
960 uint32_t quotient = fragmentInfo.splitLength / fragmentInfo.fragCount; in FrameFragmentation()
961 uint16_t remainder = fragmentInfo.splitLength % fragmentInfo.fragCount; in FrameFragmentation()
[all …]
H A Dheader_converter.cpp37 headerConverted.fragCount = HostToNet(headerOriginal.fragCount); in ConvertHostToNet()
H A Dframe_header.h46 uint16_t fragCount = 0; // Indicate how many fragments this frame is divided into member
H A Dprotocol_proto.h42 uint16_t fragCount = 0u; member