Home
last modified time | relevance | path

Searched refs:MIN_MTU_SIZE (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Ddistributeddb_communicator_proxy_test.cpp233 EXPECT_CALL(mainComm_, GetCommunicatorMtuSize()).WillOnce(Return(DBConstant::MIN_MTU_SIZE));
234 EXPECT_EQ(commProxy_->GetCommunicatorMtuSize(), DBConstant::MIN_MTU_SIZE);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/
H A Dcommunicator_proxy.cpp106 return DBConstant::MIN_MTU_SIZE; in GetCommunicatorMtuSize()
131 return DBConstant::MIN_MTU_SIZE; in GetCommunicatorMtuSize()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/
H A Dnetwork_adapter.cpp133 if (inMtuSize < DBConstant::MIN_MTU_SIZE) { in CheckAndAdjustMtuSize()
134 return DBConstant::MIN_MTU_SIZE; in CheckAndAdjustMtuSize()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Ddb_constant.h127 static constexpr uint32_t MIN_MTU_SIZE = 1024; // 1KB variable
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/communicator/
H A Ddistributeddb_communicator_deep_test.cpp732 EXPECT_EQ(adapter->GetMtuSize(), DBConstant::MIN_MTU_SIZE);
740 EXPECT_EQ(adapter->GetMtuSize(), DBConstant::MIN_MTU_SIZE);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/singlever/
H A Dsingle_ver_data_sync.cpp57 mtuSize_ = DBConstant::MIN_MTU_SIZE; // default size is 1K, it will update when need sync data. in Initialize()